I am trying to get at the cURL error number, but the curl_errorno() function doesn’t seem to work. If I make a one-line script:
curl_errorno();
I get this error:
Call to undefined function curl_errorno()…
- cURL is installed… I can use it to make requests just fine.
- PHP 5.3.6 (as reported by php.ini)
- cURL 7.19.7 (as reported by php.ini)
- My configure command contained
--with-curl
Any thoughts as to why curl_errorno() isn’t available?
not