我在我的php代码中使用curl语句,我希望它们在特定时间段过后执行。我尝试使用以下代码,但它无法正常工作:
curl_setopt($cSession, CURLOPT_TIMEOUT, 1000);
还有什么可以用来代替呢?
答案 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);
不是用于设置时间间隔,而是用于设置响应的到期时间。