php file_get_contents()在加载图片时遇到困难

时间:2016-02-03 11:30:39

标签: php fopen file-get-contents fread

如上所述,当尝试读取这个简单的图像时,php file_get_contents()函数甚至fopen()/ fread()组合都会卡住并超时:

http://pics.redblue.de/artikelid/GR/1140436/fee_786_587_png

但浏览器可以轻松加载相同的图像,是什么?

编辑:

根据评论中的要求,我显示了用于获取数据的函数:

function customRead($url)
{
    $contents = '';

    $handle = fopen($url, "rb");

    $dex = 0;

    while ( !feof($handle) )
    {
        if ( $dex++ > 100 )
            break;

        $contents .= fread($handle, 2048);
    }

    fclose($handle);

    echo "\nbreaking due to too many calls...\n";

    return $contents;
}

我也试过这个:

echo file_get_contents('http://pics.redblue.de/artikelid/GR/1140436/fee_786_587_png');

两者都给出了同样的问题

编辑:

正如评论中所建议我使用curl:

$ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HEADER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.1 Safari/537.11');
    $res = curl_exec($ch);
    $rescode = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
    curl_close($ch) ;
    echo "\n\n\n[DATA:";
    echo $res;
    echo "]\n\n\n[CODE:";
    print_r($rescode);
    echo "]\n\n\n[ERROR:";
    echo curl_error($ch);
    echo "]\n\n\n";

这是结果:

[DATA:]

[CODE:0]

[ERROR:]

1 个答案:

答案 0 :(得分:1)

如果您未通过file_get_contents获取远程数据,则可以使用cURL进行尝试,因为它可以在curl_error上提供错误消息。如果什么都没有,甚至没有错误,那么服务器上的某些东西会阻止传出连接。也许你甚至想通过SSH尝试curl。我不确定这是否有所不同,但值得一试。如果您没有得到任何内容,可以考虑联系服务器管理员(如果您不是那样)或提供商。