以下の内容はhttps://iww.hateblo.jp/entry/20140411/error_reportingより取得しました。


warningを出す

#!/usr/bin/php -q
<?php
    error_reporting(-1);  // ★これが無いと、Warningが出ないことがある
    
    $a->b = "hello";
    $a->c = "world";
    print( "{$a->b},{$a->c}!\n" );
?>
$ ./hoge.php
PHP Strict Standards:  Creating default object from empty value in /tmp/hoge.php on line 5
hello,world!

つまらないwarningもすべて出力させるためには error_reporting(-1); を呼び出すか php.iniで error_reporting -1 を設定する




以上の内容はhttps://iww.hateblo.jp/entry/20140411/error_reportingより取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14