我正在尝试错误处理 file_get_contents 方法,因此即使用户输入了错误的网站,它也会回显错误消息而不是不专业的
警告:file_get_contents(sidiowdiowjdiso):打开流失败:第 6 行的 C:\xampp\htdocs\test.php 中没有这样的文件或目录
我想如果我尝试并抓住它,它将能够抓住错误,但这不起作用。
try
{
$json = file_get_contents("sidiowdiowjdiso", true); //getting the file content
}
catch (Exception $e)
{
throw new Exception( 'Something really gone wrong', 0, $e);
}