DEV Community

Gabriel Alejandro López López
Gabriel Alejandro López López

Posted on • Edited on

Answer: CURL call is working fine directly in CURL but not in PHP 7.3

How to know why CURL is not working? Very easy:

You can use

$info = curl_getinfo($ch); $error = curl_error($ch); 

to see what happened.

Top comments (0)