Example #1
0
 public static function getInstance()
 {
     if (!isset(self::$_singleton)) {
         $c = __CLASS__;
         self::$_singleton = new $c();
     }
     return self::$_singleton;
 }