Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
index.php 450 Bytes
Copy Edit Raw Blame History
<?php
/**
* 主入口文件
*/
// 超时时间
@set_time_limit(120);
// 内存限制 取消内存限制
@ini_set("memory_limit", "-1");
// 项目名称
define("GROUP", "Proxy");
// 项目路径
define("GROUP_PATH", "./Lib/");
// 缓存路径
define("TEMP_PATH", "./Temp/");
// 创建目录安全文件
define("DIR_SAFE", 1);
// 开启调试模式
// define("DEBUG", 1);
// 引入框架
require "./Lib/System/hdphp/hdphp.php";
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化