예제 #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;
 }