📄 reload.php
字号:
<?php
define( "ROOTPATH", "" );
include( ROOTPATH."config.inc.php" );
include( ROOTPATH."language/".$sLan."_".$charset.".php" );
include( ROOTPATH."includes/SysGlobal.php" );
include( ROOTPATH."includes/pro.php" );
include( ROOTPATH."includes/func/common.inc.php" );
include( ROOTPATH."includes/func/db.inc.php" );
readconfig( );
$CatchOpen = $CONF['CatchOpen'];
$CatchTime = $CONF['CatchTime'];
$ver = $_GET['ver'];
$i = $_GET['i'];
$cha = $CatchTime;
$exp = time( ) - $cha;
if ( $ver < $exp || $CatchOpen != "1" )
{
if ( $i == "index" )
{
echo "window.location=\"index.php\"";
}
else
{
echo "window.location=\"./?".$i.".html\";";
}
}
else
{
echo "ver=0";
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -