index.php 415 B

12345678910111213141516
  1. <?php
  2. /**
  3. * 初始化文件
  4. *
  5. *
  6. *
  7. */
  8. define('APP_ID','chat');
  9. define('BASE_PATH',str_replace('\\','/',dirname(__FILE__)));
  10. if (!@include(dirname(dirname(__FILE__)).'/global.php')) exit('global.php isn\'t exists!');
  11. if (!@include(BASE_CORE_PATH.'/lrlz.php')) exit('lrlz.php isn\'t exists!');
  12. if (!@include(BASE_PATH.'/control/control.php')) exit('control.php isn\'t exists!');
  13. Base::run();
  14. ?>