📄 timestamp.cmd.php3
字号:
<?php
$ST = 1 - $ST;
setcookie("CookieShowTimestamp", $ST, time() + 60*60*24*365); // cookie expires in one year
$IsCommand = true;
$First = 1;
$RefreshMessages = true;
?>
<SCRIPT TYPE="text/javascript" LANGUAGE="javascript">
<!--
<?php
// Show/hide the server time in the status bar
if ($ST == 1)
{
$CorrectedDate = mktime(date("H") + C_TMZ_OFFSET,date("i"),date("s"),date("m"),date("d"),date("Y"));
?>
gap = parent.calc_gap("<?php echo(date("F d, Y H:i:s", $CorrectedDate)); ?>");
parent.clock(gap);
<?php
}
else
{
?>
parent.stop_clock();
<?php
}
?>
// -->
</SCRIPT>
<?php
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -