1 1 0

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

学院助手
23-03-19 591

此代码会从指定的服务器文件夹随机选择一个图片进行显示,非常有用,图片格式为.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].'" />';
?>
Ta们也喜欢这个资源 (11)
  • Licong
  • 命运gg
  • villain
  • 柒月
  • djntt
  • 34220727
  • 7018581
  • ZAESKY
  • 小萌新321
  • 学院助手
  • Airh
最新回复 (1)
  • 学院院长 23-03-19
    引用 2

    再小的个体,也有自己的品牌。
    修罗学院助力每一位XIUNO爱好者扬帆启航!

请先登录后发表评论!

返回
请先登录后发表评论!
1