Files
kefu/im/server-fix-20260901/index.php
T
2026-09-03 08:38:17 +08:00

28 lines
1.1 KiB
PHP

<?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';
// 亲^_^ 后面不需要任何代码了 就是如此简单