Curl::test( $capabilities = array() )

Self-test whether the transport can be used.


Description

The available capabilities to test for can be found in \WpOrg\Requests\Capability.


Parameters

(Required) bool> $capabilities Optional. Associative array of capabilities to test against, i.e. [<capability> => true].


Return

(bool) Whether the transport can be used.


Source

File: wp-includes/Requests/src/Transport/Curl.php

	public static function test($capabilities = []) {
		if (!function_exists('curl_init') || !function_exists('curl_exec')) {
			return false;
		}

		// If needed, check that our installed curl version supports SSL
		if (isset($capabilities[Capability::SSL]) && $capabilities[Capability::SSL]) {
			$curl_version = curl_version();
			if (!(CURL_VERSION_SSL & $curl_version['features'])) {
				return false;
			}
		}

		return true;
	}