加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.php 457 Bytes
一键复制 编辑 原始数据 按行查看 历史
LauEl 提交于 2021-03-03 09:22 . Initial commit
<?php
// 关闭报错
date_default_timezone_set("PRC");
// 声明根目录
@define("Root_Path",dirname(__FILE__));
// 是否匿名
@define("Mous",$_GET["mous"]);
// 当前页数
@define("Page",$_GET["page"]);
// 需载入的页面类型
@define("Pages",$_GET["pages"]);
// 载入函数表
require_once("require/function.php");
//声明字符集
header("Content-type: text/html; charset=utf-8");
// 载入主体
require_once("content/index.php");
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化