PHP监测Memcache服务端的运行状况(4)


div.info {
 background:rgb(204,204,204);
 border:solid rgb(204,204,204) 1px;
 margin-bottom:1em;
 }
div.info h2 {
 background:rgb(204,204,204);
 color:black;
 font-size:1em;
 margin:0;
 padding:0.1em 1em 0.1em 1em;
 }
div.info table {
 border:solid rgb(204,204,204) 1px;
 border-spacing:0;
 width:100%;
 }
div.info table th {
 background:rgb(204,204,204);
 color:white;
 margin:0;
 padding:0.1em 1em 0.1em 1em;
 }
div.info table th a.sortable { color:black; }
div.info table tr.tr-0 { background:rgb(238,238,238); }
div.info table tr.tr-1 { background:rgb(221,221,221); }
div.info table td { padding:0.3em 1em 0.3em 1em; }
div.info table td.td-0 { border-right:solid rgb(102,102,153) 1px; white-space:nowrap; }
div.info table td.td-n { border-right:solid rgb(102,102,153) 1px; }
div.info table td h3 {
 color:black;
 font-size:1.1em;
 margin-left:-0.3em;
 }
.td-0 a , .td-n a, .tr-0 a , tr-1 a {
    text-decoration:underline;
}
div.graph { margin-bottom:1em }
div.graph h2 { background:rgb(204,204,204);; color:black; font-size:1em; margin:0; padding:0.1em 1em 0.1em 1em; }
div.graph table { border:solid rgb(204,204,204) 1px; color:black; font-weight:normal; width:100%; }
div.graph table td.td-0 { background:rgb(238,238,238); }
div.graph table td.td-1 { background:rgb(221,221,221); }
div.graph table td { padding:0.2em 1em 0.4em 1em; }

div.div1,div.div2 { margin-bottom:1em; width:35em; }
div.div3 { position:absolute; left:40em; top:1em; width:580px; }
//div.div3 { position:absolute; left:37em; top:1em; right:1em; }

div.sorting { margin:1.5em 0em 1.5em 2em }
.center { text-align:center }
.aright { position:absolute;right:1em }
.right { text-align:right }
.ok { color:rgb(0,200,0); font-weight:bold}
.failed { color:rgb(200,0,0); font-weight:bold}

span.box {
 border: black solid 1px;
 border-right:solid black 2px;
 border-bottom:solid black 2px;
 padding:0 0.5em 0 0.5em;
 margin-right:1em;
}
span.green { background:#60F060; padding:0 0.5em 0 0.5em}
span.red { background:#D06030; padding:0 0.5em 0 0.5em }

div.authneeded {
 background:rgb(238,238,238);
 border:solid rgb(204,204,204) 1px;
 color:rgb(200,0,0);
 font-size:1.2em;
 font-weight:bold;
 padding:2em;
 text-align:center;
 }

input {
 background:rgb(153,153,204);
 border:solid rgb(102,102,153) 2px;
 color:white;
 font-weight:bold;
 margin-right:1em;
 padding:0.1em 0.5em 0.1em 0.5em;
 }
//-->
</style>
</head>
<body>
<div>
 <h1>
  <span><a href="">memcache</a></span>
  <span>memcache.php by <a href="">Harun Yayli</a></span>
 </h1>
 <hr>
</div>
<div>
EOB;

return $header;
}
function getFooter(){
    global $VERSION;
    $footer = '</div><!-- Based on apc.php '.$VERSION.'--></body>
</html>
';

return $footer;

}
function getMenu(){
    global $PHP_SELF;
echo "<ol>";
if ($_GET['op']!=4){
echo <<<EOB
    <li><a href="$PHP_SELF&op={$_GET['op']}">Refresh Data</a></li>
EOB;
}
else {
echo <<<EOB
    <li><a href="https://www.linuxidc.com/$PHP_SELF&op=2}">Back</a></li>
EOB;
}
echo
 menu_entry(1,'View Host Stats'),
 menu_entry(2,'Variables');

echo <<<EOB
 </ol>
 <br/>
EOB;
}

// TODO, AUTH

$_GET['op'] = !isset($_GET['op'])? '1':$_GET['op'];
$PHP_SELF= isset($_SERVER['PHP_SELF']) ? htmlentities(strip_tags($_SERVER['PHP_SELF'],'')) : '';

$PHP_SELF=$PHP_SELF.'?';
$time = time();
// sanitize _GET

foreach($_GET as $key=>$g){
    $_GET[$key]=htmlentities($g);
}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/8864f323703fffce391c0cd784e04a30.html