これは私の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
ました。何も起こりません。