0
<?php
$html_url = 'http://api.biblia.com/v1/bible/content/LEB.html?passage=John333&style=fullyFormatted&key=fd37d8';
$str_html  = file_get_contents($html_url);

问题:

它显示: 警告:file_get_contents(http://api.biblia.com/v1...

有没有办法可以隐藏此消息,而不是显示诸如“无法显示结果”之类的消息?

4

3 回答 3

0

用于@抑制警告..但它不是抑制警告/通知/错误的更可取的方法,相反,您应该尝试调试代码以检查幕后出现的问题。

error_reporting()是处理这些错误的另一种方法。

于 2013-05-20T06:59:45.667 回答
0

像这样使用@符号:

$html_url = 'http://api.biblia.com/v1/bible/content/LEB.html?passage=John333&style=fullyFormatted&key=fd37d8';
$str_html  = @file_get_contents($html_url);
于 2013-05-20T07:00:57.480 回答
0
error_reporting(0);

试试这个链接

于 2013-05-20T07:01:08.787 回答