⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 html_graphs.php

📁 每个RFC 3261信息头有一个相应的存取标识. 但是,许多信息头拥有同样的形式。 例如。To和From的信息头都是由显示名和一个URI组成。 To和From信息头用来管理与处理NameAddr实例的
💻 PHP
📖 第 1 页 / 共 2 页
字号:
<?php/*  $Id: html_graphs.php,v 1.7 2003/06/20 00:18:31 hpdl Exp $  osCommerce, Open Source E-Commerce Solutions  http://www.oscommerce.com  Copyright (c) 2002 osCommerce  Released under the GNU General Public License  HTML_Graphs (v1.5 1998/11/05 06:15:52) by Phil Davis, http://www.pobox.com/~pdavis/*/////// calls routines to initialize defaults, set up table// print data, and close table.  function html_graph($names, $values, $bars, $vals, $dvalues = 0, $dbars = 0) {// set the error level on entry and exit so as not to interfear with anyone elses error checking.    $er = error_reporting(1);// set the values that the user didn't    $vals = hv_graph_defaults($vals);    $html_graph_string = start_graph($vals, $names);    if ($vals['type'] == 0) {      $html_graph_string .= horizontal_graph($names, $values, $bars, $vals);    } elseif ($vals['type'] == 1) {      $html_graph_string .= vertical_graph($names, $values, $bars, $vals);    } elseif ($vals['type'] == 2) {      $html_graph_string .= double_horizontal_graph($names, $values, $bars, $vals, $dvalues, $dbars);    } elseif ($vals['type'] == 3) {      $html_graph_string .= double_vertical_graph($names, $values, $bars, $vals, $dvalues, $dbars);    }    $html_graph_string .= end_graph();// Set the error level back to where it was.    error_reporting($er);      return $html_graph_string;  }////// sets up the $vals array by initializing all values to null. Used to avoid// warnings from error_reporting being set high. This routine only needs to be// called if you are worried about using uninitialized variables.  function html_graph_init() {    $vals = array('vlabel'=>'',                  'hlabel'=>'',                  'type'=>'',                  'cellpadding'=>'',                  'cellspacing'=>'',                  'border'=>'',                  'width'=>'',                  'background'=>'',                  'vfcolor'=>'',                  'hfcolor'=>'',                  'vbgcolor'=>'',                  'hbgcolor'=>'',                  'vfstyle'=>'',                  'hfstyle'=>'',                  'noshowvals'=>'',                  'scale'=>'',                  'namebgcolor'=>'',                  'valuebgcolor'=>'',                  'namefcolor'=>'',                  'valuefcolor'=>'',                  'namefstyle'=>'',                  'valuefstyle'=>'',                  'doublefcolor'=>'');    return($vals);  }////// prints out the table header and graph labels  function start_graph($vals, $names) {    $start_graph_string = '<table cellpadding="' . $vals['cellpadding'] . '" cellspacing="' . $vals['cellspacing'] . '" border="' . $vals['border'] . '"';    if ($vals['width'] != 0) $start_graph_string .= ' width="' . $vals['width'] . '"';    if ($vals['background']) $start_graph_string .= ' background="' . $vals['background'] . '"';    $start_graph_string .= '>' . "\n";    if ( ($vals['vlabel']) || ($vals['hlabel']) ) {      if ( ($vals['type'] == 0) || ($vals['type'] == 2) ) {// horizontal chart        $rowspan = sizeof($names) + 1;         $colspan = 3;       } elseif ( ($vals['type'] == 1) || ($vals['type'] == 3) ) {// vertical chart        $rowspan = 3;        $colspan = sizeof($names) + 1;       }      $start_graph_string .= '  <tr>' . "\n" .                             '    <td align="center" valign="center"';// if a background was choosen don't print cell BGCOLOR      if (!$vals['background']) $start_graph_string .= ' bgcolor="' . $vals['hbgcolor'] . '"';      $start_graph_string .= ' colspan="' . $colspan . '"><font color="' . $vals['hfcolor'] . '" style="' . $vals['hfstyle'] . '"><b>' . $vals['hlabel'] . '</b></font></td>' . "\n" .                             '  </tr>' . "\n" .                             '  <tr>' . "\n" .                             '    <td align="center" valign="center"';// if a background was choosen don't print cell BGCOLOR      if (!$vals['background']) $start_graph_string .= ' bgcolor="' . $vals['vbgcolor'] . '"';      $start_graph_string .=  ' rowspan="' . $rowspan . '"><font color="' . $vals['vfcolor'] . '" style="' . $vals['vfstyle'] . '"><b>' . $vals['vlabel'] . '</b></font></td>' . "\n" .                              '  </tr>' . "\n";    }    return $start_graph_string;  }////// prints out the table footer  function end_graph() {    return '</table>' . "\n";  }////// sets the default values for the $vals array  function hv_graph_defaults($vals) {    if (!$vals['vfcolor']) $vals['vfcolor'] = '#000000';    if (!$vals['hfcolor']) $vals['hfcolor'] = '#000000';    if (!$vals['vbgcolor']) $vals['vbgcolor'] = '#FFFFFF';    if (!$vals['hbgcolor']) $vals['hbgcolor'] = '#FFFFFF';    if (!$vals['cellpadding']) $vals['cellpadding'] = '0';    if (!$vals['cellspacing']) $vals['cellspacing'] = '0';    if (!$vals['border']) $vals['border'] = '0';    if (!$vals['scale']) $vals['scale'] = '1';    if (!$vals['namebgcolor']) $vals['namebgcolor'] = '#FFFFFF';    if (!$vals['valuebgcolor']) $vals['valuebgcolor'] = '#FFFFFF';    if (!$vals['namefcolor']) $vals['namefcolor'] = '#000000';    if (!$vals['valuefcolor']) $vals['valuefcolor'] = '#000000';    if (!$vals['doublefcolor']) $vals['doublefcolor'] = '#886666';    return $vals;  }////// prints out the actual data for the horizontal chart  function horizontal_graph($names, $values, $bars, $vals) {    $horizontal_graph_string = '';    for($i = 0, $n = sizeof($values); $i < $n; $i++) {       $horizontal_graph_string .= '  <tr>' . "\n" .                                  '    <td align="right"';// if a background was choosen don't print cell BGCOLOR      if (!$vals['background']) $horizontal_graph_string .= ' bgcolor="' . $vals['namebgcolor'] . '"';      $horizontal_graph_string .= '><font size="-1" color="' . $vals['namefcolor'] . '" style="' . $vals['namefstyle'] . '">' . $names[$i] . '</font></td>' . "\n" .                                  '    <td'; // if a background was choosen don't print cell BGCOLOR      if (!$vals['background']) $horizontal_graph_string .= ' bgcolor="' . $vals['valuebgcolor'] . '"';      $horizontal_graph_string .= '>';// decide if the value in bar is a color code or image.      if (ereg('^#', $bars[$i])) {         $horizontal_graph_string .= '<table cellpadding="0" cellspacing="0" bgcolor="' . $bars[$i] . '" width="' . ($values[$i] * $vals['scale']) . '">' . "\n" .                                    '  <tr>' . "\n" .                                    '    <td>&nbsp;</td>' . "\n" .                                    '  </tr>' . "\n" .                                    '</table>';      } else {        $horizontal_graph_string .= '<img src="' . $bars[$i] . '" height="10" width="' . ($values[$i] * $vals['scale']) . '">';      }      if (!$vals['noshowvals']) {        $horizontal_graph_string .= '<i><font size="-2" color="' . $vals['valuefcolor'] . '" style="' . $vals['valuefstyle'] . '">(' . $values[$i] . ')</font></i>';      }      $horizontal_graph_string .= '</td>' . "\n" .                                  '  </tr>' . "\n";    } // endfor    return $horizontal_graph_string;  }////// prints out the actual data for the vertical chart  function vertical_graph($names, $values, $bars, $vals) {    $vertical_graph_string = '  <tr>' . "\n";    for ($i = 0, $n = sizeof($values); $i < $n; $i++) {      $vertical_graph_string .= '    <td align="center" valign="bottom"';// if a background was choosen don't print cell BGCOLOR      if (!$vals['background']) $vertical_graph_string .= ' bgcolor="' . $vals['valuebgcolor'] . '"';      $vertical_graph_string .= '>';      if (!$vals['noshowvals']) {        $vertical_graph_string .= '<i><font size="-2" color="' . $vals['valuefcolor'] . '" style="' . $vals['valuefstyle'] . '">(' . $values[$i] . ')</font></i><br>';      }      $vertical_graph_string .= '<img src="' . $bars[$i] . '" width="5" height="';// values of zero are displayed wrong because a image height of zero // gives a strange behavior in Netscape. For this reason the height // is set at 1 pixel if the value is zero. - Jan Diepens      if ($values[$i] != 0) {        $vertical_graph_string .= $values[$i] * $vals['scale'];      } else {        $vertical_graph_string .= '1';      }       $vertical_graph_string .= '"></td>' . "\n";    } // endfor    $vertical_graph_string .= '  </tr>' . "\n" .                              '  <tr>' . "\n";    for ($i = 0, $n = sizeof($values); $i < $n; $i++) {      $vertical_graph_string .= '    <td align="center" valign="top"';// if a background was choosen don't print cell BGCOLOR      if (!$vals['background']) $vertical_graph_string .= ' bgcolor="' . $vals['namebgcolor'] . '"';      $vertical_graph_string .= '><font size="-1" color="' . $vals['namefcolor'] . '" style="' . $vals['namefstyle'] . '">' . $names[$i] . '</font></td>' . "\n";    } // endfor    $vertical_graph_string .= '  </tr>' . "\n";    return $vertical_graph_string;  }////// prints out the actual data for the double horizontal chart  function double_horizontal_graph($names, $values, $bars, $vals, $dvalues, $dbars) {    $double_horizontal_graph_string = '';    for($i = 0, $n = sizeof($values); $i < $n; $i++) {      $double_horizontal_graph_string .= '  <tr>' . "\n" .                                        '    <td align="right"';// if a background was choosen don't print cell BGCOLOR      if (!$vals['background']) $double_horizontal_graph_string .= ' bgcolor="' . $vals['namebgcolor'] . '"';      $double_horizontal_graph_string .= '><font size="-1" color="' . $vals['namefcolor'] . '" style="' . $vals['namefstyle'] . '">' . $names[$i] . '</font></td>' . "\n" .                                         '    <td';// if a background was choosen don't print cell BGCOLOR      if (!$vals['background']) $double_horizontal_graph_string .= ' bgcolor="' . $vals['valuebgcolor'] . '"';      $double_horizontal_graph_string .= '><table align="left" cellpadding="0" cellspacing="0" width="' . ($dvalues[$i] * $vals['scale']) . '">' . "\n" .                                         '      <tr>' . "\n" .                                         '        <td';// set background to a color if it starts with # or an image otherwise.      if (ereg('^#', $dbars[$i])) {        $double_horizontal_graph_string .= ' bgcolor="' . $dbars[$i] . '">';      } else {        $double_horizontal_graph_string .= ' background="' . $dbars[$i] . '">';      }      $double_horizontal_graph_string .= '<nowrap>';// decide if the value in bar is a color code or image.      if (ereg('^#', $bars[$i])) {         $double_horizontal_graph_string .= '<table align="left" cellpadding="0" cellspacing="0" bgcolor="' . $bars[$i] . '" width="' . ($values[$i] * $vals['scale']) . '">' . "\n" .                                           '  <tr>' . "\n" .                                           '    <td>&nbsp;</td>' . "\n" .                                           '  </tr>' . "\n" .                                           '</table>';      } else {        $double_horizontal_graph_string .= '<img src="' . $bars[$i] . '" height="10" width="' . ($values[$i] * $vals['scale']) . '">';      }                if (!$vals['noshowvals']) {        $double_horizontal_graph_string .= '<i><font size="-3" color="' . $vals['valuefcolor'] . '" style="' . $vals['valuefstyle'] . '">(' . $values[$i] . ')</font></i>';      }      $double_horizontal_graph_string .= '</nowrap></td>' . "\n" .                                         '        </tr>' . "\n" .                                         '      </table>';      if (!$vals['noshowvals']) {        $double_horizontal_graph_string .= '<i><font size="-3" color="' . $vals['doublefcolor'] . '" style="' . $vals['valuefstyle'] . '">(' . $dvalues[$i] . ')</font></i>';      }      $double_horizontal_graph_string .= '</td>' . "\n" .

⌨️ 快捷键说明

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