时间:2019-05-05加入收藏
以上的代码会查找
- <?php
- $img_array = glob('images/*.{gif,jpg,png,jpeg,webp,bmp}', GLOB_BRACE);
- if(count($img_array) == 0) die('没找到图片文件。请先上传一些图片到 '.dirname(__FILE__).'/images/ 文件夹');
- header('Content-Type: image/png');
- echo(file_get_contents($img_array[array_rand($img_array)]));
- ?>
images
目录下的所有图片,并随机挑选出一张显示出来。还可以这样:通过判断文章是否有图片上传,有的话就显示,没有就执行上面的变量进行随机显示
- $rand = rand('1','8'); // 随机 1-8 张缩略图,有多少张图片就填写最大数多少
- $random = '/路径/' . $rand . '.jpg'; //拼装随机缩略图路径
TGA: php