凉风有信,秋月无边
亏我思娇的情绪、好比度日如年
共 1 篇文章

标签:PHP随机

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

<?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].'" />'; ?>  

赞(0)villainvillain技术笔记 阅读(35)去评论