vitals.php
来自「phpSysInfo v2.3 显示CPU、内存、硬盘、系统温度、风扇速度等系统」· PHP 代码 · 共 67 行
PHP
67 行
<?php//// phpSysInfo - A PHP System Information Script// http://phpsysinfo.sourceforge.net///// This program is free software; you can redistribute it and/or// modify it under the terms of the GNU General Public License// as published by the Free Software Foundation; either version 2// of the License, or (at your option) any later version.//// This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.//// You should have received a copy of the GNU General Public License// along with this program; if not, write to the Free Software// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.//// $Id: vitals.php,v 1.13 2004/04/24 22:36:28 webbie Exp $//// xml_vitals()//function xml_vitals () { global $sysinfo; $ar_buf = $sysinfo->loadavg(); for ($i=0; $i<3; $i++) { $load_avg .= $ar_buf[$i] . ' '; } $_text = " <Vitals>\n" . " <Hostname>" . $sysinfo->chostname() . "</Hostname>\n" . " <IPAddr>" . $sysinfo->ip_addr() . "</IPAddr>\n" . " <Kernel>" . $sysinfo->kernel() . "</Kernel>\n" . " <Distro>" . $sysinfo->distro() . "</Distro>\n" . " <Distroicon>" . $sysinfo->distroicon() . "</Distroicon>\n" . " <Uptime>" . $sysinfo->uptime() . "</Uptime>\n" . " <Users>" . $sysinfo->users() . "</Users>\n" . " <LoadAvg>" . trim($load_avg) . "</LoadAvg>\n" . " </Vitals>\n"; return $_text;}//// html_vitals()//function html_vitals () { global $XPath; global $text; $_text = '<table border="0" width="90%" align="center">' . '<tr><td valign="top"><font size="-1">'. $text['hostname'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/Hostname') . '</font></td></tr>' . '<tr><td valign="top"><font size="-1">'. $text['ip'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/IPAddr') . '</font></td></tr>' . '<tr><td valign="top"><font size="-1">'. $text['kversion'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/Kernel') . '</font></td></tr>' . '<tr><td valign="top"><font size="-1">'. $text['dversion'] .'</font></td><td><img width="16" height="16" alt="" src="images/' . $XPath->getData('/phpsysinfo/Vitals/Distroicon') .'"> <font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/Distro') . '</font></td></tr>' . '<tr><td valign="top"><font size="-1">'. $text['uptime'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/Uptime') . '</font></td></tr>' . '<tr><td valign="top"><font size="-1">'. $text['users'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/Users') . '</font></td></tr>' . '<tr><td valign="top"><font size="-1">'. $text['loadavg'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/LoadAvg') . '</font></td></tr>' . '</table>'; return $_text;}?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?