The version of vichan running on lainchan.org
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

21 lignes
529B

  1. <?php
  2. $dir = "banners/";
  3. $files = scandir($dir);
  4. $images = array_diff($files, array('.', '..'));
  5. $name = $images[array_rand($images)];
  6. $fp = fopen($dir . $name, 'rb');
  7. // send the right headers
  8. header('Cache-Control: no-cache, no-store, must-revalidate'); // HTTP 1.1
  9. header('Pragma: no-cache'); // HTTP 1.0
  10. header('Expires: 0'); // Proxies
  11. header('Content-Type: ' . $fp['type']);
  12. header('Content-Length: ' . $fp['bytes']);
  13. // dump the picture and stop the script
  14. //fpassthru($fp);
  15. print($fp['type']);
  16. print('dicks');
  17. exit;
  18. ?>