Esempio n. 1
0
 /**
  * 得到对象单例
  *
  */
 public static function getInstance()
 {
     if (null === self::$_instance) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }