在特定时间段后在PHP中执行CURL语句

时间:2014-07-18 11:27:08

标签: php curl

我在我的php代码中使用curl语句,我希望它们在特定时间段过后执行。我尝试使用以下代码,但它无法正常工作:

curl_setopt($cSession, CURLOPT_TIMEOUT, 1000);

还有什么可以用来代替呢?

1 个答案:

答案 0 :(得分:2)

您可以尝试这样的事情:

function exe_fun(){

  // call curl here

 sleep(20); // wait 20 seconds
 exe_fun(); // call this function again
} 

curl_setopt($cSession, CURLOPT_TIMEOUT, 1000);不是用于设置时间间隔,而是用于设置响应的到期时间。