列出目录(和子目录)中的所有图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了列出目录(和子目录)中的所有图像相关的知识,希望对你有一定的参考价值。
This snippet will create an array of all images in a directory and sub-directories and display them randomly.
<?php //path to directory to scan. i have included a wildcard for a subdirectory $directory = "images/*/"; //get all image files with a .jpg extension. $imgs = ''; // create array foreach($images as $image){ $imgs[] = "$image"; } //shuffle array //select first 20 images in randomized array //display images foreach ($imgs as $img) { echo "<img src='$img' /> "; } ?>
以上是关于列出目录(和子目录)中的所有图像的主要内容,如果未能解决你的问题,请参考以下文章