为了账号安全,请及时绑定邮箱和手机立即绑定

如何在PHP中处理file_get_contents()函数的警告?

如何在PHP中处理file_get_contents()函数的警告?

PHP
幕布斯6054654 2019-09-19 08:41:26
我写了这样的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]:无法打开流:我尝试过try,catch但它没有用。
查看完整描述

3 回答

?
胡子哥哥

TA贡献1825条经验 获得超6个赞

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

步骤2:通过在调用file_get_contents()之前放置一个错误控制操作符(即@)来抑制警告: $content = @file_get_contents($site);


查看完整回答
反对 回复 2019-09-19
  • 3 回答
  • 0 关注
  • 1057 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信