index.php 305 B

1234567
  1. <?php
  2. $img_array = glob('bzhi/*.{gif,jpg,png,jpeg,webp,bmp}', GLOB_BRACE);
  3. if(count($img_array) == 0) die('没找到图片文件。请先上传一些图片到 '.dirname(__FILE__).'/bzhi/ 文件夹');
  4. header('Content-Type: image/png');
  5. echo(file_get_contents($img_array[array_rand($img_array)]));
  6. ?>