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

时间:2009-03-30 14:31:21

标签: php api query-string file-get-contents

我在从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://吗?

12 个答案:

答案 0 :(得分:99)

尝试使用cURL。

<?php

$curl_handle=curl_init();
curl_setopt($curl_handle, CURLOPT_URL,'http://###.##.##.##/mp/get?mpsrc=http://mybucket.s3.amazonaws.com/11111.mpg&mpaction=convert format=flv');
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_USERAGENT, 'Your application name');
$query = curl_exec($curl_handle);
curl_close($curl_handle);

?>

答案 1 :(得分:25)

答案 2 :(得分:21)

<?php

$lurl=get_fcontent("http://ip2.cc/?api=cname&ip=84.228.229.81");
echo"cid:".$lurl[0]."<BR>";


function get_fcontent( $url,  $javascript_loop = 0, $timeout = 5 ) {
    $url = str_replace( "&amp;", "&", 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 );
    }
}


?>

答案 3 :(得分:18)

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

你需要改变你的php.ini来打开这个选项或使用另一种方法,即cURL - 迄今为止最流行的,诚实的,标准的方式来完成你正在尝试的要做。

答案 4 :(得分:7)

我注意到您的网址中包含空格。我认为这通常是一件坏事。尝试使用

对URL进行编码
$my_url = urlencode("my url");

然后调用

file_get_contents($my_url);

看看你是否有更好的运气。

答案 5 :(得分:7)

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

试试这个,

$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);

这对我有用

答案 6 :(得分:3)

我不确定参数(mpaction,format),如果为amazonaws页面或##指定了它们。##。

尝试urlencode()网址。

答案 7 :(得分:3)

我遇到了类似的问题,我解析了youtube网址。代码是;

$json_is = "http://gdata.youtube.com/feeds/api/videos?q=".$this->video_url."&max-results=1&alt=json";
$video_info = json_decode ( file_get_contents ( $json_is ), true );     
$video_title = is_array ( $video_info ) ? $video_info ['feed'] ['entry'] [0] ['title'] ['$t'] : '';

然后我意识到$this->video_url包含空格。我用trim($this->video_url)解决了这个问题。

也许它会对你有所帮助。祝你好运

答案 8 :(得分:2)

我遇到了类似的问题。

由于超时!

超时可以这样表示:

$options = array(
    'http' => array(
        'header'  => "Content-type: application/x-www-form-urlencoded\r\n",
        'method'  => "POST",
        'content' => http_build_query($data2),
        'timeout' => 30,
    ),
);
$context = stream_context_create($options); $retour =
$retour = @file_get_contents("http://xxxxx.xxx/xxxx", false, $context);

答案 9 :(得分:0)

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

答案 10 :(得分:0)

这对我有用……我没有使用 curl。

我能够通过浏览器访问特定的 API url,但是在 file_get_contents 中使用时,它给出了错误“无法打开流”。

然后,我修改了我想调用的 API URL,方法是使用 urlencoding 对所有双引号进行编码,并保持其他所有内容不变。

示例格式如下:

$url = 'https://stackoverflow.com/questions'.urlencode('"'.$variable1.'"');

然后使用

file_get_contents($url);

答案 11 :(得分:-4)

使用此

file_get_contents($my_url,null,null);