|
<table width="1050" border="0" cellpadding="0" cellspacing="0"> |
|
|
<tr> |
|
|
<td height=5></td> |
|
|
</tr> |
|
|
<tr> |
|
|
<td height=1 bgcolor=gray></td> |
|
|
</tr> |
|
|
<tr> |
|
|
<td height=5></td> |
|
|
</tr> |
|
|
<tr height="20"> |
|
|
<td align="center"> |
|
|
<a href="about_us.php">关于我们</a> - <a href="contact_us.php">联系我们</a> |
|
|
- <a href="privacy.php">隐私保护</a> - <a href="../bbs/get_help.htm">帮助信息</a> |
|
|
</td> |
|
|
</tr> |
|
|
<tr height="20"> |
|
|
<td align="center"> |
|
|
<?= $BBS_name; ?> 版权所有 |
|
|
</td> |
|
|
</tr> |
|
|
<tr height="20"> |
|
|
<td align="center"> |
|
|
Copyright © <?= $BBS_copyright_duration; ?> <?= $BBS_host_name; ?>, All rights reserved.<br /> |
|
|
用户时区设置:<a href="../bbs/preference.php" target=_blank><?= (new DateTimeImmutable("", $_SESSION["BBS_user_tz"]))->format("e (\U\T\C P)"); ?></a><br /> |
|
| 1 |
<?php |
<?php |
| 2 |
|
$user_tz = (new DateTimeImmutable("", $_SESSION["BBS_user_tz"]))->format("e (\U\T\C P)"); |
| 3 |
|
|
| 4 |
// Log end time |
// Log end time |
| 5 |
echo "页面运行使用" . round((microtime(true) - $time_start) * 1000, 2) . "毫秒\n"; |
$page_exec_duration = round((microtime(true) - $time_start) * 1000, 2); |
| 6 |
|
|
| 7 |
|
echo <<<HTML |
| 8 |
|
<table width="1050" border="0" cellpadding="0" cellspacing="0"> |
| 9 |
|
<tr> |
| 10 |
|
<td height=5></td> |
| 11 |
|
</tr> |
| 12 |
|
<tr> |
| 13 |
|
<td height=1 bgcolor=gray></td> |
| 14 |
|
</tr> |
| 15 |
|
<tr> |
| 16 |
|
<td height=5></td> |
| 17 |
|
</tr> |
| 18 |
|
<tr height="20"> |
| 19 |
|
<td align="center"> |
| 20 |
|
<a href="about_us.php">关于我们</a> - <a href="contact_us.php">联系我们</a> |
| 21 |
|
- <a href="privacy.php">隐私保护</a> - <a href="../bbs/get_help.htm">帮助信息</a> |
| 22 |
|
</td> |
| 23 |
|
</tr> |
| 24 |
|
<tr height="20"> |
| 25 |
|
<td align="center"> |
| 26 |
|
<?= $BBS_name; ?> 版权所有 |
| 27 |
|
</td> |
| 28 |
|
</tr> |
| 29 |
|
<tr height="20"> |
| 30 |
|
<td align="center"> |
| 31 |
|
Copyright © {$BBS_copyright_duration} {$BBS_host_name}, All rights reserved.<br /> |
| 32 |
|
用户时区设置:<a href="../bbs/update_pref.php" target=_blank>{$user_tz}</a><br /> |
| 33 |
|
页面运行使用{$page_exec_duration}毫秒 |
| 34 |
|
</td> |
| 35 |
|
</tr> |
| 36 |
|
</table> |
| 37 |
|
HTML; |
| 38 |
?> |
?> |
|
</td> |
|
|
</tr> |
|
|
</table> |
|