예제 #1
0
파일: app.php 프로젝트: momoim/momo-api
 /**
  * 单例模式
  * @return App_Model
  */
 public static function &instance()
 {
     if (!isset(self::$instance)) {
         // Create a new instance
         self::$instance = new App_Model();
     }
     return self::$instance;
 }