Просмотр файла vavok-1.5.3/gallery/count31.php

Размер файла: 1.95Kb
  1. <?php
  2. require_once"../include/startup.php";
  3.  
  4.  
  5. $p31_hits = file(BASEDIR . "used/datacounter/31_hits.dat");
  6. $p31_hitsarr = explode("|", $p31_hits[0]);
  7.  
  8. foreach($p31_hitsarr as $k) {
  9. $p31datadays = explode("-", $k);
  10. $hour_data[] = $p31datadays[1];
  11. }
  12.  
  13. $p31_host = file(BASEDIR . "used/datacounter/31_host.dat");
  14. $p31_hostarr = explode("|", $p31_host[0]);
  15.  
  16. foreach($p31_hostarr as $k) {
  17. $p31datadays = explode("-", $k);
  18. $hour_host[] = $p31datadays[1];
  19. }
  20.  
  21. $max = 0;
  22. $max_index = 0;
  23. foreach ($hour_data as $index => $value) {
  24. if ($value > $max) {
  25. $max = $value;
  26. $max_index = $index;
  27. }
  28. }
  29.  
  30. if ($max == 0) {
  31. $max = 1;
  32. }
  33.  
  34. $per_hit = array();
  35. foreach ($hour_data as $value) {
  36. $per_hit[] = $value * 0.90 / $max;
  37. }
  38.  
  39. $per_host = array();
  40. foreach ($hour_host as $value) {
  41. $per_host[] = $value * 0.90 / $max;
  42. }
  43. $img = @imageCreateFromGIF(BASEDIR . 'images/img/counter31.gif');
  44.  
  45. $color1 = imageColorAllocate($img, 44, 191, 228);
  46. $color2 = imageColorAllocate($img, 0, 0, 120);
  47. $color_red = imageColorAllocate($img, 200, 0, 0);
  48.  
  49. $imageH = 96;
  50. $imageW = 47;
  51. $collW = 4;
  52. $x1 = 138;
  53. $y1 = (int)($imageW - $imageW * $per_hit[0] + 7);
  54. $y1_host = (int)($imageW - $imageW * $per_host[0] + 7);
  55. $x2 = $x1 - 3;
  56.  
  57. $counth = count($hour_data);
  58. if ($counth > 30) {
  59. $counth = 30;
  60. }
  61.  
  62. for($i = 1;$i <= $counth;$i++) {
  63.  
  64. $y2 = (int)($imageW - $imageW * $per_hit[$i] + 7);
  65. imageLine($img, $x1, $y1, $x2, $y2, $color1);
  66.  
  67. $y2_host = (int)($imageW - $imageW * $per_host[$i] + 7);
  68. imageLine($img, $x1, $y1_host, $x2, $y2_host, $color2);
  69.  
  70. if ($hour_data[$i] != 0 && $i == $max_index) {
  71. ImageString($img, 1, $x2-17, $y2-10, "max", $color_red);
  72. ImageString($img, 1, $x2 + 2, $y2-10, $hour_data[$i], $color2);
  73.  
  74. imageLine($img, $x2-1, $y2-7, $x2-1, $y2 + 42, $color_red);
  75. }
  76. $y1 = $y2;
  77. $y1_host = $y2_host;
  78. $x1 -= $collW;
  79. $x2 -= $collW;
  80. }
  81. Header("Content-type: image/gif");
  82. ImageGIF($img);
  83. ImageDestroy($img);
  84.  
  85. ?>