curl_version
string curl_version(void)
Finds the version of cURL currently being used.
Returns:
A string representing the version of the cURL library in use
Description:
Returns the version of the cURL library that's being used by PHP.
Example:
Print the cURL version
<?php
$curl_version = curl_version();
echo "The version of cURL in use is $curl_version.\n";
?>
|