gpt4 book ai didi

php - 如何在 php 中捕获 file_get_contents() 的错误

转载 作者:行者123 更新时间:2023-12-05 08:57:36 25 4
gpt4 key购买 nike

如何捕获 file_get_contents() 的错误?

我试过这个:

if(!$contenido = file_get_contents($url))
{
$save=false;
}

没有成功

最佳答案

file_get_contents()失败时返回 FALSE。您必须使用 === 运算符检查该值。如果你想抑制警告,你可以使用 @ operatorfile_get_contents() 之前。

$contenido = @file_get_contents($url);
if (contenido === FALSE) {
$save=FALSE;
}

来自file_get_contents() docs :

Warning This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE. Please read the section on Booleans for more information. Use the === operator for testing the return value of this function.

关于php - 如何在 php 中捕获 file_get_contents() 的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30309551/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com