コード例 #1
0
ファイル: static.php プロジェクト: phpcrazy/wpa20
 public static function getInstance()
 {
     if (!self::$_instance instanceof TestClass) {
         echo "Hi there!" . '<br />';
         self::$_instance = new TestClass();
     }
     return self::$_instance;
 }