CRON JOB PHP访问网址

时间:2015-07-09 13:29:58

标签: php cron centos plesk

我正在尝试设置一个cron作业,每天访问多个url。我已经在我的plesk界面中安排了命令来访问.php文件,它会访问所请求的文件。

我会在服务器上的.php文件中使用哪些脚本来访问网址?

会不会像......

wget -q -O- http://www.example.com
wget -q -O- http://www.example.com/page

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

如果您尝试访问网址中的网址/拉取信息,为什么不使用cURL?

$ch = curl_init(); 
// set url 
curl_setopt($ch, CURLOPT_URL, "example.com"); 

//return the transfer as a string 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

// $output contains the output string
$output = curl_exec($ch); 
// close curl resource to free up system resources 
curl_close($ch);