コード例 #1
0
ファイル: Singleton.php プロジェクト: jankovacs/php-legs
 public static final function getInstance($className)
 {
     $instance = Singleton::getConcreteInstance($className);
     if (!$instance) {
         $instance = Singleton::createInstance($className);
     }
     return $instance;
 }