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

📄 timeplan.php

📁 Network Administration Visualized 网络管理可视化源码
💻 PHP
字号:
<?php/* * $Id: timeplan.php 2674 2004-04-28 13:03:41Z mortenv $ * * Copyright 2002-2004 UNINETT AS *  * This file is part of Network Administration Visualized (NAV) * * NAV 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. * * NAV 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 NAV; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA * * * Authors: Andreas Aakre Solberg <andreas.solberg@uninett.no> * */function makeBox($img, $shaddow, $up, $down, $color, $text) {  $bg = ImageColorAllocate($img, 150, 150, 150);  $black = ImageColorAllocate($img, 0,0,0);    ImageFilledRectangle($img, 50+$shaddow, $up+$shaddow, 		       180+$shaddow, $down+$shaddow, $black);# Lager boks med ramme  ImageFilledRectangle($img, 50, $up, 180, $down, $color);  ImageRectangle($img, 50, $up, 180, $down, $black);  # Legger inn tekst  if ( ($down-$up) > 12) {    ImageString($img, 3, 55, $up + 3 , $text, $black);  }}function makeZone($img, $h, $m, $h2, $m2, $col, $forcewrap) {    $start = (60*24 + $h * 60 + $m - 60 * 6) % (60*24);  $stop = (60*24 + $h2 * 60 + $m2 - 60 * 6) % (60*24);  $klokke = substr("0" . $h, strlen("0" . $h) - 2 ) . ":";  $klokke .= substr("0" . $m, strlen("0" . $m) - 2 ) . " - ";  $klokke .= substr("0" . $h2, strlen("0" . $h2) - 2 ) . ":";  $klokke .= substr("0" . $m2, strlen("0" . $m2) - 2 );    $bg = ImageColorAllocate($img, 150, 150, 150);  $black = ImageColorAllocate($img, 0,0,0);  $arrow = ImageColorAllocate($img, 150,150,150);  if ($start < $stop) {    $up = 10 + round( (360*$start) / (24*60)) ;    $down = 6 + round( (360*$stop) / (24*60));    if ( ($down-$up) > 2) {      makeBox($img, 2, $up, $down, $col, $klokke);    }  } else if (($start > $stop) OR ($forcewrap)) {    $up = 10 + round( (360*$start) / (24*60)) ;    $down = 6 + 360;    if ( ($down-$up) > 2) {      makeBox($img, 2, $up, $down, $col, $klokke);    }    $up = 10;    $down = 6 + round( (360*$stop) / (24*60));    if ( ($down-$up) > 2) {      makeBox($img, 2, $up, $down, $col, $klokke);    }  }}error_reporting(0);Header("Content-type: image/png");$string=implode($argv," ");$im = ImageCreate(200,380);$white = ImageColorAllocate($im, 255, 255, 255);ImageColorTransparent($im, $white);$or2 = ImageColorAllocate($im, 180, 180, 30);$black = ImageColorAllocate($im, 0,0,0);$px = (imagesx($im)-7.5*strlen($string))/2;for ($i = 0; $i < 24; $i++ ) {  $klokke = (6 + $i) % 24;  ImageString($im,1, 15,10 + $i*15, substr("0" . $klokke, 					   strlen("0" . $klokke) -2 ),	      $black);  ImageLine($im, 30, 10 + 15*$i, 40, 10 + 15*$i, $black);  ImageLine($im, 35, 17 + 15*$i, 40, 17 + 15*$i, $black);  $bgcol[0] = ImageColorAllocate($im,  51, 51, 255);  $bgcol[1] = ImageColorAllocate($im, 102, 102, 255);  if ($i % 2 == 0) {    ImageFilledRectangle($im, 40, 10 + 15*$i, 190, 40 + 15*$i, 			 $bgcol[(($i % 4) / 2) ] );  } }#    ImageString($im,1, 150,10 + $i*15, "yo." . (($i % 4) / 2), $black);ImageRectangle($im, 40, 10, 190, 370, $black);$col[0] = ImageColorAllocate($im, 245, 245, 255);$col[1] = ImageColorAllocate($im, 255, 215,   0);$col[2] = ImageColorAllocate($im, 255, 160, 122);$col[3] = ImageColorAllocate($im,  70, 130, 180);$col[4] = ImageColorAllocate($im, 255,  99,  71);$col[5] = ImageColorAllocate($im, 245, 245, 220);$col[6] = ImageColorAllocate($im, 189, 183, 102);// hvis bare et force wraparaoundif (sizeof($t) == 1) {  makeZone($im, $t[0], $m[0], $t[0], $m[0], $col[0], true); } else {// $t time   $m minutt  $col farger $t teller  for ($i = 0; $i < sizeof($t) ; $i++) {        makeZone($im, $t[$i], $m[$i], 	     $t[($i + 1) % sizeof($t)], 	     $m[($i + 1) % sizeof($t)], 	     $col[$i % sizeof($col)],	     false);  }}if ($debug != 1) { ImagePng($im); }ImageDestroy($im);?>

⌨️ 快捷键说明

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