Requests::set_certificate_path( string $path )

Set default certificate path.


Description Description


Parameters Parameters

$path

(string) (Required) Certificate path, pointing to a PEM file.


Top ↑

Source Source

File: wp-includes/class-requests.php

	public static function set_certificate_path( $path ) {
		Requests::$certificate_path = $path;
	}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.