心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

admin.php 525B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2016年11月5日
  7. * 管理后台入口文件
  8. */
  9. // 定义为入口文件
  10. define('IS_INDEX', true);
  11. // 入口文件地址绑定
  12. define('URL_BIND', 'admin');
  13. // PHP版本检测
  14. if (PHP_VERSION < '5.3') {
  15. header('Content-Type:text/html; charset=utf-8');
  16. exit('您服务器PHP的版本太低,程序要求PHP版本不小于5.3');
  17. }
  18. // 引用内核启动文件
  19. require dirname(__FILE__) . '/core/start.php';