Пример #1
0
 public static function instance()
 {
     if (empty(self::$instance)) {
         $c = __CLASS__;
         self::$instance = new $c();
     }
     return self::$instance;
 }