PHP7.2 で Warning: Use of undefined constant On - assumed 'On' な警告
PHPを7.2に上げたところ「Warning: Use of undefined constant On - assumed 'On' (this will throw an Error in a future version of PHP) in 」 な警告
エラー表示をするために
ini_set("display_errors", On);
エラー表示をするために
ini_set("display_errors", On);
と書いていたが
ini_set("display_errors", '1');
のように記述しなければならないらしい
ini_set("display_errors", '1');
のように記述しなければならないらしい
コメント