我从远程服务器获取一些数据并将其输入我的站点数据库。它有 900k 的记录(应用程序),但记录的插入仅停止了 60,180 条记录。我们使用mailto
和异常处理程序来查找错误但没有响应。
谁能提供有关如何获得 cron 超时的建议,或者我们的代码是否有错误?
<?php
set_time_limit(0);
ignore_user_abort();
try
{
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://ks329xxx.com/cronRU/update");
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
curl_exec($ch);
// close cURL resource, and free up system resources
curl_close($ch);
}
catch (Exception $e)
{
echo 'Caught exception: ', $e->getMessage(), "\n";
mail('varunxxxx@xxxxx.com', 'update', $message);
}
?>