Hi guys..
I was using curl from shell scripts and was setting -s option curl -s , to make to make it silent.. please tell how to set this option in php curl..
Thanks
Hi guys..
I was using curl from shell scripts and was setting -s option curl -s , to make to make it silent.. please tell how to set this option in php curl..
Thanks
You want to set the CURLOPT_MUTE setting when initializing the connection:
curl_setopt($curl_resource, CURLOPT_MUTE, 1);