📄 install.php
字号:
<?php
include './install_files/consts.php'; // Constants
include './install_files/funcs.php'; // Needed functions
include './inc/config.php'; //FlashChat config
error_reporting( E_ALL ^ E_NOTICE );
//error_reporting(0);
$step = $_GET['step'];
if( ! $step || $step<0 || $step>8)
{
$step = 1;
}
include "./install_files/step_$step.php";
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -