// +---------------------------------------------------------------------- // | 海豚PHP框架 [ DolphinPHP ] // +---------------------------------------------------------------------- // | 版权所有 2016~2017 河源市卓锐科技有限公司 [ http://www.zrthink.com ] // +---------------------------------------------------------------------- // | 官方网站:http://dolphinphp.com // +---------------------------------------------------------------------- // | 开源协议 ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | 作者: 蔡伟明 <314013107@qq.com> // +---------------------------------------------------------------------- // [ PHP版本检查 ] header("Content-type: text/html; charset=utf-8"); header('Access-Control-Allow-Origin: *'); //设置http://www.baidu.com允许跨域访问 header('Access-Control-Allow-Headers: X-Requested-With,X_Requested_With'); //设置允许的跨域header if (version_compare(PHP_VERSION, '5.5', '<')) { die('PHP版本过低,最少需要PHP5.5,请升级PHP版本!'); } // [ 应用入口文件 ] // 定义应用目录 define('APP_PATH', __DIR__ . '/../application/'); // 定义后台入口文件 define('ADMIN_FILE', 'admin.php'); // 检查是否安装 if(!is_file('../data/install.lock')){ define('BIND_MODULE', 'install'); } // 加载框架引导文件 require '../thinkphp/start.php';