PHP实现随机图像功能

源码特效 阅读

PHP 实现随机图像功能

<?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 目录下的所有图片,并随机挑选出一张显示出来。

本文链接:https://niujc.com/mat/1382999.html

栏目:源码特效
来源:
标签:php
时间:2022-06-26

晚上好!当前时间为
目前距离2023年春节还有
TOP