| 1 |
<?php
|
| 2 |
$user_tz = (new DateTimeImmutable("", $_SESSION["BBS_user_tz"]))->format("e (\U\T\C P)");
|
| 3 |
|
| 4 |
// Log end time
|
| 5 |
$page_exec_duration = round((microtime(true) - $_SERVER["REQUEST_TIME_FLOAT"]) * 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 |
Copyright © {$BBS_copyright_duration} {$BBS_name}({$BBS_host_name}), All rights reserved.<br />
|
| 21 |
用户时区设置:<a href="/bbs/update_pref.php" target=_blank>{$user_tz}</a><br />
|
| 22 |
页面运行使用{$page_exec_duration}毫秒
|
| 23 |
</td>
|
| 24 |
</tr>
|
| 25 |
</table>
|
| 26 |
HTML;
|