コード例 #1
0
ファイル: order.php プロジェクト: RenzcPHP/3dproduct
 public static function get_instance()
 {
     if (self::$instance === null) {
         $classname = __CLASS__;
         self::$instance = new $classname();
     }
     return self::$instance;
 }