コード例 #1
0
ファイル: Singleton.php プロジェクト: vasa00739/php.local
 public static function getInstance()
 {
     if (is_null(self::$_instance)) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }
コード例 #2
0
ファイル: singleton.php プロジェクト: dimichspb/soap-example
 public static function getInstance()
 {
     return self::$_instance ?: (self::$_instance = new self());
 }