123456789101112131415 |
- <?php
- // 应用入口文件
- // 检测PHP环境
- if(version_compare(PHP_VERSION,'5.3.0','<')) die('require PHP > 5.3.0 !');
- // 开启调试模式 建议开发阶段开启 部署阶段注释或者设为false
- define('APP_DEBUG',true);
- //define('APP_DEBUG',false);
- // 定义应用目录
- define('APP_PATH','./USKYZHAF/');
- //自定义
- // 引入ThinkPHP入口文件
- require './ThinkPHP/ThinkPHP.php';
|