Example #1
0
 /**
  * 自动加载的类库
  * @access      public 
  */
 public static function setAutoLibs()
 {
     self::$_lib = array('route' => SYS_LIB_PATH . '/lib_route.php', 'mysql' => SYS_LIB_PATH . '/lib_mysql.php', 'template' => SYS_LIB_PATH . '/lib_template.php', 'cache' => SYS_LIB_PATH . '/lib_cache.php', 'thumbnail' => SYS_LIB_PATH . '/lib_thumbnail.php');
 }
Example #2
0
 /**
  * 自动加载的类库
  * @access      public
  */
 public static function setAutoLibs()
 {
     self::$_lib = array('route' => SYS_LIB_PATH . '/lib_route.php', 'mysql' => SYS_LIB_PATH . '/lib_mysql.php', 'log' => SYS_LIB_PATH . '/lib_log.php', 'cache' => SYS_LIB_PATH . '/lib_cache.php', 'thumbnail' => SYS_LIB_PATH . '/lib_thumbnail.php', 'curlmulit' => SYS_LIB_PATH . '/lib_CurlMulit.php');
 }
Example #3
0
 /**
  * 自动加载的类库
  * 
  * @access public
  */
 public static function setAutoLibs()
 {
     self::$_lib = array('route' => SYS_LIB_PATH . '/route.class.php', 'mysql' => SYS_LIB_PATH . '/mysql.class.php', 'template' => SYS_LIB_PATH . '/template.class.php', 'cache' => SYS_LIB_PATH . '/cache.class.php', 'thumbnail' => SYS_LIB_PATH . '/thumbnail.class.php', 'captcha' => SYS_LIB_PATH . '/captcha.class.php', 'file' => SYS_LIB_PATH . '/file.class.php', 'image' => SYS_LIB_PATH . '/image.class.php');
 }
Example #4
0
 /**
  * 自动加载类库
  */
 public static function autoLoadLibs()
 {
     self::$_lib = array('route' => SYS_LIB_PATH . '/route.php', 'mysql' => SYS_LIB_PATH . '/mysql.php', 'logger' => SYS_LIB_PATH . '/logger.php', 'template' => SYS_LIB_PATH . '/template.php', 'cache' => SYS_LIB_PATH . '/cache.php');
 }