当我使用如下的有效 URL 时,file_get_contents
将返回 html 代码
$html = file_get_contents("http://www.google.com/");
但如果 URL 无效:
$html = file_get_contents("http://www.go1235ogle.com/"); //Invalid URL. This line give Error Message
我的代码将输出一条错误消息Notice: Trying to get property of non-object
如果file_get_contents
无法打开给定的 URL,我想隐藏它输出的错误消息并用if else
语句跳过下面的代码。
if (FALSE === $html)
{
//skip the code in here ?
}
但上面的代码没有帮助。你能告诉我如何纠正这个问题吗?