12345678910111213141516 |
- <?php
- /**
- * 初始化文件
- *
- *
- *
- */
- define('APP_ID','chat');
- define('BASE_PATH',str_replace('\\','/',dirname(__FILE__)));
- if (!@include(dirname(dirname(__FILE__)).'/global.php')) exit('global.php isn\'t exists!');
- if (!@include(BASE_CORE_PATH.'/lrlz.php')) exit('lrlz.php isn\'t exists!');
- if (!@include(BASE_PATH.'/control/control.php')) exit('control.php isn\'t exists!');
- Base::run();
- ?>
|