0

我对 file_get_contents 和 curl 有疑问,

(无法连接到...)

甚至谷歌...

卷曲也很活跃,也很开放……有什么想法吗?

function curl($url){
    $ch = curl_init(); 
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_VERBOSE, true);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)');
    curl_setopt($ch, CURLOPT_URL,$url);
    return curl_exec ($ch);
}
echo curl("http://site.com/");
4

1 回答 1

0

http://srv14.baixarpremium.net/test.php

一个简单的

function curl($url){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$data = curl_exec($ch);
if ($data === false) { echo curl_error($ch); }
curl_close($ch);
return $data;
}

echo curl("http://baixarpremium.net/");

需要几分钟...

但有时速度很快...所以请释放页面超过 1 次才能看到问题...

我放了一个脚本来查看脚本运行的时间......

看结果

经过时间:119.17127 秒。内存使用:0.75Mb

oO

只需打开一页...

你访问http://srv14.baixarpremium.net/

该脚本运行速度很快,只需带有 baixarpremium.net/gerador/ 的标头即可

没有卷曲它会非常快..enter code here

于 2013-08-09T03:32:56.960 回答