2 1 0

PHP随机显示调用指定文件夹图片

学院助手
23-03-19 1687

此代码会从指定的服务器文件夹随机选择一个图片进行显示,非常有用,图片格式为.gif,.jpg,.png

<?php
//This will get an array of all the gif, jpg and png images in a folder
$img_array = glob("/path/to/images/*.{gif,jpg,png}",GLOB_BRACE);
//Pick a random image from the array
$img = array_rand($img_array);
//Display the image on the page
echo '<img alt="'.$img_array[$img].'" src="'.$img_array[$img].'" />';
?>
展开全文

请先登录后发表评论!

最新回复 (2)
返回
QR Code
学院交流群
294962666
请先登录后发表评论!
2