system_footer.php

来自「phpSysInfo v2.3 显示CPU、内存、硬盘、系统温度、风扇速度等系统」· PHP 代码 · 共 87 行

PHP
87
字号
<?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: system_footer.php,v 1.38 2004/08/13 23:02:32 webbie Exp $if (!$hide_picklist) {  echo "<center>";  $update_form = "<form method=\"POST\" action=\"$PHP_SELF\">\n" . "\t" . $text['template'] . ":&nbsp;\n" . "\t<select name=\"template\">\n";  $dir = opendir('templates/');  while (false !== ($file = readdir($dir))) {    if ($file != 'CVS' && $file[0] != '.' && is_dir('templates/' . $file)) {      $filelist[] = $file;    }   }   closedir($dir);  asort($filelist);  while (list ($key, $val) = each ($filelist)) {    if ($template == $val && !$random) {      $update_form .= "\t\t<option value=\"$val\" SELECTED>$val</option>\n";    } else {      $update_form .= "\t\t<option value=\"$val\">$val</option>\n";    }   }   $update_form .= "\t\t<option value=\"xml\">XML</option>\n";  // auto select the random template, if we're set to random  $update_form .= "\t\t<option value=\"random\"";  if ($random) {    $update_form .= " SELECTED";  }   $update_form .= ">random</option>\n";  $update_form .= "\t</select>\n";  $update_form .= "\t&nbsp;" . $text['language'] . ":&nbsp;\n" . "\t<select name=\"lng\">\n";  unset($filelist);  $dir = opendir('includes/lang/');  while (false !== ($file = readdir($dir))) {    if ($file[0] != '.' && is_file('includes/lang/' . $file) && eregi("\.php$", $file)) {      $filelist[] = eregi_replace('.php', '', $file);    }   }   closedir($dir);  asort($filelist);  while (list ($key, $val) = each ($filelist)) {    if ($lng == $val) {      $update_form .= "\t\t<option value=\"$val\" SELECTED>$val</option>\n";    } else {      $update_form .= "\t\t<option value=\"$val\">$val</option>\n";    }   }   $update_form .= "\t</select>\n" . "\t<input type=\"submit\" value=\"" . $text['submit'] . "\">\n" . "</form>\n";  echo $update_form;  echo "\n\n</center>";} else {  echo "\n\n<br>";} echo "\n<hr>\n" . $text['created'];echo '<a href="http://phpsysinfo.sourceforge.net">&nbsp;phpSysInfo-' . $VERSION . '</a> ' . strftime ($text['gen_time'], time());echo "\n<br>\n</body>\n</html>\n";?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?