Example #1
0
 /**
  * 返回APS实例
  *
  * @return APS
  */
 public static function get_instance()
 {
     if (self::$instance === NULL) {
         self::$instance = new APS();
     }
     return self::$instance;
 }