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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.