File_get_contents警告

时间:2014-02-16 15:50:23

标签: php file-get-contents

当我使用此http://www.ilpost.it/2014/02/25/peanuts-2014-febbraio-25/(页面为空,但在某种意义上仍然存在)file_get_contents时,它会给我以下警告:

Warning: file_get_contents(http://www.ilpost.it/2014/02/16/peanuts-2014-febbraio-16/) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 404 Not Found in [...my php url...]

即使我把这个功能放在这样的条件下

if (file_get_contents($url_to_feed) === FALSE){..}

我收到警告,然后是条件的结果。

如何解决此问题并避免警告?

1 个答案:

答案 0 :(得分:-1)

使用file_get_contents,您正在进行假设。您假设该文件存在。

在本地文件系统上,您通常首先使用file_exists来检查,但是每次最终会向另一台服务器发出两个请求...所以可能不是一个好主意。

就个人而言,我会使用套接字。

$fp = fsockopen("www.ilpost.it",80);
if( $fp) { // connection established
    fputs($fp,"GET /2014/02/25/peanuts-2015-febbraio-25/ HTTP/1.0\r\n"
             ."Host: www.ilpost.it\r\n"
             ."\r\n");
    $return = "";
    $headers = "firstline";
    while(!feof($fp)) {
        if( $headers) {
            $line = trim(fgets($fp));
            if( $headers == "firstline") {
                list(,$status,$text) = explode(" ",$line,3);
                if( $status != "200") { /* do something... or not! */ }
                $headers = "remaining";
            }
            if( !$line) $headers = false;
        }
        else $return .= fgets($fp);
    }
    fclose($fp);
}

当然,这是很多代码,但这就是定义你自己的函数的原因;)