PHP cURL how to check if compiled

iisPHP

I'm trying to get the cURL extension for PHP working in IIS.

If in my php.ini file there is no ;extension=php_curl.dll, does that mean that PHP has not been compiled with cURL?

Thanks.

Best Answer

Run a PHP script that contains phpinfo() and look for a section named curl. If it exists then the cURL extension exists, and the section will give you information about the specific version of cURL it has been built against.