如何处理 PHP 中 file_get_contents() 函数的警告?
2022-08-30 05:58:50
我写了一个像这样的PHP代码
$site="http://www.google.com";
$content = file_get_content($site);
echo $content;
但是当我从中删除“http://”时,我收到以下警告:$site
警告:file_get_contents(www.google.com) [function.file-get-content]:无法打开流:
我试过了,但它不起作用。try
catch