hxp
2025-06-04 f4a514d5ac952110da846636ecbb9de951eaf3d2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
include_once "/language/lang.php";
 
header("Content-type: text/html; charset=utf-8");
 
\CommFunc\SessionStart();
 
$resultInfo = $_POST;
$playerInfo = $resultInfo["ResultMsg"];
 
?>
 
<!DOCTYPE html>
<html>
 
<head>
    <meta charset="utf-8">
</head>
 
<body>
    <p />
    <table cellspacing='1' cellpadding='1' width='200' border='1'>
        <tbody align="center">
            <tr>
                <td><?php echo \Lang\gettext("玩家状态"); ?></td>
                <td><?php echo \Lang\gettext("结果"); ?></td>
            </tr>
            <tr>
                <td><?php echo \Lang\gettext("禁言"); ?></td>
                <td>
                    <?php
                    if ($playerInfo["forbidTalk"]) {
                        echo \Lang\gettext("是");
                    } else {
                        echo \Lang\gettext("否");
                    }
                    ?>
                </td>
            </tr>
            <tr>
                <td><?php echo \Lang\gettext("封号"); ?></td>
                <td>
                    <?php
                    if ($playerInfo["forbidLogin"]) {
                        echo \Lang\gettext("是");
                    } else {
                        echo \Lang\gettext("否");
                    }
                    ?>
                </td>
            </tr>
        </tbody>
    </table>
</body>
 
</html>