function download_xml()
{
$url = 'http://tv.sygko.net/tv.xml';
$ch = curl_init($url);
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$data = curl_exec($ch);
echo("curl_exec was succesful"); //This never gets called
curl_close($ch);
return $data;
}
$my_file = 'tvdata.xml';
$handle = fopen($my_file, 'w');
$data = download_xml();
fwrite($handle, $data);
我要做的是在指定的URL下载xml并将其保存到磁盘.但是,它会在大约80%完成后停止,并且在curl_exec调用之后永远不会到达echo调用.我不确定为什么,但我相信这是因为内存不足.因此,我想问一下,每次下载4kb时,是否可以将curl写入文件.如果这是不可能的,有人知道一种方法来获取存储在url下的xml文件下载并使用php存储在我的磁盘上吗?
非常感谢你,
BEN.
编辑:
这是现在的代码,它不起作用.它将数据写入文件,但仍然只占文档的80%左右.也许不是因为它超过记忆而是其他原因?我真的不敢相信将文件从URL复制到光盘很难…
<?
$url = 'http://tv.sygko.net/tv.xml';
$my_file = fopen('tvdata.xml', 'w');
$ch = curl_init($url);
$timeout = 300;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FILE, $my_file);
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_BUFFERSIZE, 4096);
curl_exec($ch) OR die("Error in curl_exec()");
echo("got to after curl exec");
fclose($my_file);
curl_close($ch);
?>
解决方法:
您的超时设置为5秒,可能太短,具体取决于文档的文件大小.尝试将其增加到10-15只是为了确保它有足够的时间来完成转移.