Jump to content

[SOLVED] cURL request problem


deecee2000

Recommended Posts

Hi All,

 

  I'm using cURL to send request to other server. But I have one problem regarding this. Please refer this below code.

 

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "http://some other server URL");

curl_setopt($ch, CURLOPT_HEADER, false);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

$result = curl_exec($ch);

curl_close($ch);

 

print_r($result);

 

In my php.ini file the max_execution_time = 30

 

When I executed this code, it is taking to long approx 3 minutes. And it doesn't saying any error message regarding script time execution. finally I'm getting nothing as output.

 

So my question, is there any way that I can check script time and if it is more than 30 seconds, and still I not get any response, It will stop execution.

 

Please put your advice here,

thanks,

 

Link to comment
https://forums.phpfreaks.com/topic/180446-solved-curl-request-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.