345

我写了一个这样的PHP代码

$site="http://www.google.com";
$content = file_get_content($site);
echo $content;

但是,当我从中删除“http://”时,$site会收到以下警告:

警告:file_get_contents(www.google.com) [function.file-get-contents]:未能打开流:

我试过了trycatch但没有用。

4

18 回答 18

565

第一步:查看返回码:if($content === FALSE) { // handle error here... }

第 2 步:通过在对file_get_contents()的调用前面放置一个错误控制运算符(即)来抑制警告: @$content = @file_get_contents($site);

于 2008-11-07T15:14:11.923 回答
170

您还可以将错误处理程序设置为调用Exception的匿名函数,并对该异常使用 try / catch。

set_error_handler(
    function ($severity, $message, $file, $line) {
        throw new ErrorException($message, $severity, $severity, $file, $line);
    }
);

try {
    file_get_contents('www.google.com');
}
catch (Exception $e) {
    echo $e->getMessage();
}

restore_error_handler();

似乎有很多代码可以捕获一个小错误,但如果您在整个应用程序中使用异常,则只需执行一次,在顶部(例如在包含的配置文件中),它会在整个过程中将所有错误转换为异常。

于 2010-08-04T13:51:34.467 回答
93

我最喜欢的方法很简单:

if (($data = @file_get_contents("http://www.google.com")) === false) {
      $error = error_get_last();
      echo "HTTP request failed. Error was: " . $error['message'];
} else {
      echo "Everything went better than expected";
}

我在尝试了try/catch上面的 @enobrev 之后发现了这一点,但这允许更少的冗长(和 IMO,更易读)的代码。我们只是error_get_last用来获取最后一个错误的文本,并file_get_contents在失败时返回 false,所以一个简单的“if”可以捕捉到它。

于 2012-11-13T17:06:48.690 回答
38

你可以在前面加上一个@: $content = @file_get_contents($site);

这将抑制任何警告 -谨慎使用!. 请参阅错误控制运算符

编辑:当您删除“http://”时,您不再寻找网页,而是磁盘上名为“www.google .....”的文件

于 2008-11-07T15:13:51.313 回答
25

一种替代方法是抑制错误并引发稍后可以捕获的异常。如果您的代码中有多个对 file_get_contents() 的调用,这尤其有用,因为您不需要手动抑制和处理所有这些调用。相反,可以在单个 try/catch 块中对该函数进行多次调用。

// Returns the contents of a file
function file_contents($path) {
    $str = @file_get_contents($path);
    if ($str === FALSE) {
        throw new Exception("Cannot access '$path' to read contents.");
    } else {
        return $str;
    }
}

// Example
try {
    file_contents("a");
    file_contents("b");
    file_contents("c");
} catch (Exception $e) {
    // Deal with it.
    echo "Error: " , $e->getMessage();
}
于 2011-06-24T04:17:00.403 回答
16
function custom_file_get_contents($url) {
    return file_get_contents(
        $url,
        false,
        stream_context_create(
            array(
                'http' => array(
                    'ignore_errors' => true
                )
            )
        )
    );
}

$content=FALSE;

if($content=custom_file_get_contents($url)) {
    //play with the result
} else {
    //handle the error
}
于 2014-02-24T00:28:28.073 回答
14

我是这样做的……不需要 try-catch 块……最好的解决方案总是最简单的……享受吧!

$content = @file_get_contents("http://www.google.com");
if (strpos($http_response_header[0], "200")) { 
   echo "SUCCESS";
} else { 
   echo "FAILED";
} 
于 2009-03-06T05:11:17.760 回答
5

这是我的处理方式:

$this->response_body = @file_get_contents($this->url, false, $context);
if ($this->response_body === false) {
    $error = error_get_last();
    $error = explode(': ', $error['message']);
    $error = trim($error[2]) . PHP_EOL;
    fprintf(STDERR, 'Error: '. $error);
    die();
}
于 2014-02-24T00:05:14.657 回答
4

最好的办法是设置您自己的错误和异常处理程序,它们会做一些有用的事情,例如将其记录到文件中或通过电子邮件发送关键文件。 http://www.php.net/set_error_handler

于 2008-11-07T16:57:28.483 回答
0

由于 PHP 4 使用error_reporting()

$site="http://www.google.com";
$old_error_reporting = error_reporting(E_ALL ^ E_WARNING);
$content = file_get_content($site);
error_reporting($old_error_reporting);
if ($content === FALSE) {
    echo "Error getting '$site'";
} else {
    echo $content;
}
于 2014-07-18T18:01:34.310 回答
-1

像这样的东西:

public function get($curl,$options){
    $context = stream_context_create($options);
    $file = @file_get_contents($curl, false, $context);
    $str1=$str2=$status=null;
    sscanf($http_response_header[0] ,'%s %d %s', $str1,$status, $str2);
    if($status==200)
        return $file        
    else 
        throw new \Exception($http_response_header[0]);
}
于 2019-04-23T16:36:32.967 回答
-2

你可以使用这个脚本

$url = @file_get_contents("http://www.itreb.info");
if ($url) {
    // if url is true execute this 
    echo $url;
} else {
    // if not exceute this 
    echo "connection error";
}
于 2012-02-27T07:57:12.027 回答
-2

在使用 file_get_contents() 之前,您应该使用 file_exists() 函数。通过这种方式,您将避免 php 警告。

$file = "path/to/file";

if(file_exists($file)){
  $content = file_get_contents($file);
}
于 2016-10-03T18:18:20.680 回答
-2

最简单的方法是在 file_get_contents 之前添加一个 @,即。即:

$content = @file_get_contents($site); 
于 2019-02-08T07:56:33.447 回答
-2

我解决了所有问题,所有链接都可以使用

public function getTitle($url)
    {
        try {
            if (strpos($url, 'www.youtube.com/watch') !== false) {
                $apikey = 'AIzaSyCPeA3MlMPeT1CU18NHfJawWAx18VoowOY';
                $videoId = explode('&', explode("=", $url)[1])[0];
                $url = 'https://www.googleapis.com/youtube/v3/videos?id=' . $videoId . '&key=' . $apikey . '&part=snippet';

                $ch = curl_init();

                curl_setopt($ch, CURLOPT_HEADER, 0);
                curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
                curl_setopt($ch, CURLOPT_URL, $url);
                curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
                curl_setopt($ch, CURLOPT_VERBOSE, 0);
                curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
                $response = curl_exec($ch);
                curl_close($ch);

                $data = json_decode($response);
                $value = json_decode(json_encode($data), true);

                $title = $value['items'][0]['snippet']['title'];
            } else {
                set_error_handler(
                    function () {
                            return false;
                    }
                );
                if (($str = file_get_contents($url)) === false) {
                    $title = $url;
                } else {
                    preg_match("/\<title\>(.*)\<\/title\>/i", $str, $title);
                    $title = $title[1];
                    if (preg_replace('/[\x00-\x1F\x7F-\xFF]/', '', $title))
                        $title = utf8_encode($title);
                    $title = html_entity_decode($title);
                }
                restore_error_handler();
            }
        } catch (Exception $e) {
            $title = $url;
        }
        return $title;
    }
于 2021-10-09T09:12:24.083 回答
-3
if (!file_get_contents($data)) {
  exit('<h1>ERROR MESSAGE</h1>');
} else {
      return file_get_contents($data);
}
于 2020-02-17T03:18:36.407 回答
-4

这将尝试获取数据,如果它不起作用,它将捕获错误并允许您在捕获中做任何您需要的事情。

try {
    $content = file_get_contents($site);
} catch(\Exception $e) {
    return 'The file was not found';
}
于 2016-07-28T16:37:04.193 回答
-4
try {
   $site="http://www.google.com";
   $content = file_get_content($site);
   echo $content;
} catch (ErrorException $e) {
    // fix the url

}

set_error_handler(function ($errorNumber, $errorText, $errorFile,$errorLine ) 
{
    throw new ErrorException($errorText, 0, $errorNumber, $errorFile, $errorLine);
});
于 2016-12-14T08:50:33.820 回答