Facebook
From Mammoth Gibbon, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 50
  1. <?php
  2. $serwery = array("www.gdansk.pl", "www.trojmiasto.pl", "dziennikbaltycki.pl");
  3. $counter = 0;
  4. $filename = "loadbalancer.txt";
  5.  
  6. if(file_exists($filename))
  7. {
  8.     $counter = (int)file_get_contents($filename);
  9. }
  10.  
  11. $counter = $counter+1;
  12. $counter = $counter % count($serwery);
  13. file_put_contents($filename,$counter);
  14. $url = sprintf('http://%1$s',$serwery[$counter]);
  15. $hd = sprintf('Location: %1$s',$url);
  16. header($hd);
  17.  
  18.  
  19. ?>