動かざることバグの如し

近づきたいよ 君の理想に

PHPでエラーログの確認に使えるコード100選

100個もいらないので6つで

確認環境

<?php
~                                // PHP Parse error

$d =& dir('/');                  // PHP Strict Standards

set_magic_quotes_runtime(false); // PHP Deprecated

echo $undefinedVariables;        // PHP Notice

ini_set();                       // PHP Warning

undefined();                     // PHP Fatal error

余談

こういうのが既に標準で用意されてたりする

<?php
error_log('hello world');