我使用的是Windows 7.我已安装XAMPP 1.8.0并启用了CURL功能。但是,我仍然无法抓取网页。
我使用了以下代码段:
<?php
// create a new cURL resource
$ch = curl_init();
// set URL and other appropriate options
curl_setopt($ch, CURLOPT_URL, "http://www.google.com/");
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);
?>
当我执行程序时,错误消息为:
Fatal error: Maximum execution time of 30 seconds exceeded in
C:\xampp\htdocs\testing\curl.php on line 14
第14行: curl_close($ch)
为什么我会收到这样的错误?我该怎么调试呢?请帮帮我。
答案 0 :(得分:0)
在您的信息页中添加set_time_limit($seconds);
也
添加curl_setopt ($ch, CURLOPT_TIMEOUT, 60);
并尝试