コード例 #1
0
ファイル: single_final.php プロジェクト: nicelxm/about_php
 static function getInstance()
 {
     if (self::$con instanceof self) {
         return self::$con;
     } else {
         self::$con = new self();
         return self::$con;
     }
 }