Answers for "get error ssl curl php"

PHP
4

curl php show error

if(curl_exec($ch) === false)
{
    echo 'Curl error: ' . curl_error($ch);
}
else
{
    echo 'Operation completed without any errors';
}
Posted by: Guest on June-08-2020
0

php curl ssl certificate problem

curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, TRUE);
Posted by: Guest on September-14-2021

Browse Popular Code Answers by Language