phpinfo.php
来自「这是整套横扫千军3D版游戏的源码」· PHP 代码 · 共 16 行
PHP
16 行
<?php
/* this page is a bit different from the rest of the site. It doesn't not include
header or footer, so we must call session_start() ourselves. This is so because
a call to phpinfo() outputs complete html document, not just the tables. */
require("inc/functions.php");
startSessionProperly();
if (checkAccess() == false)
{
require("inc/restricted.inc");
exit;
}
phpinfo();
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?