-1
我正在使用以下代碼從網站獲取一些信息並將其保存到本地。在php中運行重複的任務
$ch = curl_init("http://test.com/test.txt");
$fp = fopen("test.txt", "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
現在test.txt需要定期更新。我如何在特定的時間間隔觸發此操作?
使用cron我的兒子 – 2014-11-04 04:06:04