这是我的 PHP 脚本 -
<?php
error_reporting(E_ALL);
echo('catch this -> ' ;. $thisdoesnotexist);
?>
如果要执行,这显然应该显示一些东西。
我所看到的只是一个空白页。为什么error_reporting(E_ALL)
不工作?
<?php
ini_set("display_errors", "1");
error_reporting(E_ALL);
echo('catch this -> ' ;. $thisdoesnotexist);
?>
也无济于事。我得到的只是一个空白页面。
我去过php.ini
并设置display_errors = On
和display_startup_errors = On
。没发生什么事。