2 0 0

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

小助理
23-03-19 3099

此代码会从指定的服务器文件夹随机选择一个图片进行显示,非常有用,图片格式为.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』们也感兴趣 (15)
  • 小助理
  • 轩逸
  • 柒月
  • xiaorenwu
  • AllenPunch
  • wancent
  • Licong
  • 命运gg
  • villain
  • djntt

请先登录后发表评论!

最新回复 (2)
  • 酋长 23-03-19
    引用 2

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

  • AllenPunch 23-06-13
    引用 3

    学习了????????

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