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


Creating default object from empty value

$ ./hoge.php
PHP Strict Standards:  Creating default object from empty value in /tmp/hoge.php on line 5
hello,world!

オブジェクトではなく空の値にいきなり変数を追加しようとしてるので警告が出てる。
解決のために、ちゃんとオブジェクトを作ってあげる。

#!/usr/bin/php -q
<?php
    error_reporting(-1);
    
    $a = new StdClass;    // ★これが無いと、Warningが出る
    $a->b = "hello";
    $a->c = "world";
    print( "{$a->b},{$a->c}!\n" );
?>



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

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