如何检查 file_get_contents 在 PHP 中返回 false 的原因

How to check reason why file_get_contents returned false in PHP

我试过这样做:

$urls = array(


    "https://www.gov.sg/"




);



    foreach ($urls as $url) {
        d($url);
      //  $url = "http://www.google.com";
    $data = file_get_contents($url);
    d($data);

}

d() 是第 3 方函数,如 var_dump()。

我一直收到 $data = false。似乎域中的任何页面都在这样做。

当我尝试 google.com 等另一个域时,它成功了。

页面有效,我在浏览器上试过了

以下类似帖子提出了 URL 编码问题,并启用了 allow_url_fopen,但这些在此处并不适用: PHP file_get_contents returning false PHP file_get_contents returning false

为什么函数返回 false?另外,一般来说,有没有办法检查 file_get_contents 返回 false 的原因? PHP 有没有办法转储错误?

你可以得到这样的最后一个错误,

$error = error_get_last();
var_dump($error);

例如,test.php

<?php

$data = file_get_contents("http://hi200.com");
var_dump($data);
$error = error_get_last();
var_dump($error);

php test.php

PHP Warning:  file_get_contents(http://hi200.com): failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden
 in C:\Users\Dell\Desktop\HQ_Educations\library\test.php on line 3
bool(false)
array(4) {
  ["type"]=>
  int(2)
  ["message"]=>
  string(105) "file_get_contents(http://hi200.com): failed to open stream: HTTP request failed! HTTP/1.1 403 Forbidden
"
  ["file"]=>
  string(52) "C:\Users\Dell\Desktop\HQ_Educations\library\test.php"
  ["line"]=>
  int(3)
}