使用file_get_contents和curl超时

时间:2013-08-09 00:22:43

标签: curl fopen

我遇到了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/");

1 个答案:

答案 0 :(得分: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/");

需要几分钟......

但有时候会很快...所以请多次发布页面以查看问题...

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

查看结果

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

OO

只需打开1页......

您可以访问http://srv14.baixarpremium.net/

脚本运行速度很快,只需使用Heixarpremium.net/gerador /

标题

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