How to request timeout using curl function?

Hello friends, today I will tell you through experts php tutorial how you can request timeout Using php curl function program. So let’s try to understand step to step with example.

example 1:-

curl_setopt($ch, CURLOPT_TIMEOUT, 2); //timeout in seconds
#curl_setopt($ch, CURLOPT_TIMEOUT_MS, 5000); //timeout in Milliseconds

example 2:-

curl_setopt($ch, CURLOPT_TIMEOUT, 5); //timeout in seconds
#curl_setopt($ch, CURLOPT_TIMEOUT_MS, 5000); //timeout in Milliseconds