Пример #1
0
 public static function getInstance()
 {
     if (is_null(self::$_singleton)) {
         return self::$_singleton = new self();
     } else {
         return self::$_singleton;
     }
 }