mlbtv2/index.php

7 lines
297 B
PHP
Raw Normal View History

2024-01-10 17:30:16 +00:00
<?php
2024-01-10 17:31:48 +00:00
$img_array = glob('img/*.{gif,jpg,png,jpeg,webp,bmp}', GLOB_BRACE);
if(count($img_array) == 0) die('没找到图片文件。请先上传一些图片到 '.dirname(__FILE__).'/img/ 文件夹');
2024-01-10 17:30:16 +00:00
header('Content-Type: image/png');
echo(file_get_contents($img_array[array_rand($img_array)]));
2024-01-10 17:31:48 +00:00
?>