更新
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: liu21st <liu21st@gmail.com>
|
||||
// +----------------------------------------------------------------------
|
||||
//session_start();
|
||||
|
||||
// 应用入口文件
|
||||
error_reporting(E_ALL & ~E_NOTICE);
|
||||
// 检测PHP环境
|
||||
if(version_compare(PHP_VERSION,'5.4.0','<')) die('require PHP > 5.4.0 !');
|
||||
//超时时间
|
||||
@set_time_limit(300);
|
||||
//内存限制 取消内存限制
|
||||
@ini_set("memory_limit",'-1');
|
||||
// 开启调试模式 建议开发阶段开启 部署阶段注释或者设为false
|
||||
//define('APP_DEBUG',True);
|
||||
// 定义应用目录
|
||||
define('APP_PATH','./Lib/');
|
||||
|
||||
// 引入ThinkPHP入口文件
|
||||
require './Lib/ThinkPHP/ThinkPHP.php';
|
||||
// 亲^_^ 后面不需要任何代码了 就是如此简单
|
||||
Reference in New Issue
Block a user