当前位置:  开发笔记 > 编程语言 > 正文

PHP file_get_contents()返回"无法打开流:HTTP请求失败!"

如何解决《PHPfile_get_contents()返回"无法打开流:HTTP请求失败!"》经验,为你挑选了6个好方法。

我在从PHP代码调用url时遇到问题.我需要使用PHP代码中的查询字符串来调用服务.如果我在浏览器中键入url,它可以正常工作,但如果我使用file-get-contents()来进行调用,我会得到:

警告:file-get-contents(http:// ....)无法打开流:HTTP请求失败!HTTP/1.1 202接受于......

我使用的代码是:

$query=file_get_contents('http://###.##.##.##/mp/get?mpsrc=http://mybucket.s3.amazonaws.com/11111.mpg&mpaction=convert format=flv');
echo($query);

就像我说 - 从浏览器调用,它工作正常.有什么建议?

我也尝试过另一个网址,例如:

$query=file_get_contents('http://www.youtube.com/watch?v=XiFrfeJ8dKM');

这工作得很好......可能是我需要调用的网址中有第二个http://吗?



1> James Hall..:

尝试使用cURL.



当真正的问题出现在&符号中时,这太复杂了.
不是每个人都安装了(但应该)cURL.cURL肯定要快很多倍,但file_get_contents也不是*那么慢,并且不要求你每次使用它都记住所有选项.

2> SilentGhost..:

这可能是你的问题吗?

注意:如果要打开包含特殊字符的URI(例如空格),则需要使用urlencode()对URI进行编码.



3> 小智..:
";


function get_fcontent( $url,  $javascript_loop = 0, $timeout = 5 ) {
    $url = str_replace( "&", "&", urldecode(trim($url)) );

    $cookie = tempnam ("/tmp", "CURLCOOKIE");
    $ch = curl_init();
    curl_setopt( $ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1" );
    curl_setopt( $ch, CURLOPT_URL, $url );
    curl_setopt( $ch, CURLOPT_COOKIEJAR, $cookie );
    curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true );
    curl_setopt( $ch, CURLOPT_ENCODING, "" );
    curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
    curl_setopt( $ch, CURLOPT_AUTOREFERER, true );
    curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false );    # required for https urls
    curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout );
    curl_setopt( $ch, CURLOPT_TIMEOUT, $timeout );
    curl_setopt( $ch, CURLOPT_MAXREDIRS, 10 );
    $content = curl_exec( $ch );
    $response = curl_getinfo( $ch );
    curl_close ( $ch );

    if ($response['http_code'] == 301 || $response['http_code'] == 302) {
        ini_set("user_agent", "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1");

        if ( $headers = get_headers($response['url']) ) {
            foreach( $headers as $value ) {
                if ( substr( strtolower($value), 0, 9 ) == "location:" )
                    return get_url( trim( substr( $value, 9, strlen($value) ) ) );
            }
        }
    }

    if (    ( preg_match("/>[[:space:]]+window\.location\.replace\('(.*)'\)/i", $content, $value) || preg_match("/>[[:space:]]+window\.location\=\"(.*)\"/i", $content, $value) ) && $javascript_loop < 5) {
        return get_url( $value[1], $javascript_loop+1 );
    } else {
        return array( $content, $response );
    }
}


?>


感谢您的代码,看起来像你得到它:http://php.net/manual/en/ref.curl.php的主要问题是函数调用`get_url`实际上应该`get_fcontent`因为你改了名字功能本身.这实际上是一个递归函数调用,它通过更改某些参数来重新尝试获取URL内容.

4> Michael Wale..:

file_get_contents()利用fopen()包装器,因此限制通过allow_url_fopenphp.ini中的选项访问URL .

您将需要更改您的php.ini以启用此选项或使用替代方法,即cURL - 迄今为止最流行,并且诚实地,标准方式来完成您要执行的操作.



5> slim..:

我注意到你的URL中有空格.我认为这通常是一件坏事.尝试使用编码URL

$my_url = urlencode("my url");

然后打电话

file_get_contents($my_url);

看看你有没有更好的运气



6> d_bhatnagar..:

您基本上需要通过请求发送一些信息.

试试这个,

$opts = array('http'=>array('header' => "User-Agent:MyAgent/1.0\r\n")); 
//Basically adding headers to the request
$context = stream_context_create($opts);
$html = file_get_contents($url,false,$context);
$html = htmlspecialchars($html);

这对我有用


这对我也有用!看起来需要用户代理
推荐阅读
爱唱歌的郭少文_
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有