本文及资源最后更新时间 2019-11-28 by sky995
- 直接上代码
<?php header('Content-type: image/jpg'); $img_array = glob("./*.{gif,jpg,png}",GLOB_BRACE); $img = array_rand($img_array); $image = file_get_contents($img_array[$img]); echo $image;
本文及资源最后更新时间 2019-11-28 by sky995
<?php
header('Content-type: image/jpg');
$img_array = glob("./*.{gif,jpg,png}",GLOB_BRACE);
$img = array_rand($img_array);
$image = file_get_contents($img_array[$img]);
echo $image;