应该怎么做才能使用
PHP从文件夹/目录中获取图像的标题(例如abc.jpg)并将它们存储在数组中.
例如:
a[0] = 'ac.jpg' a[1] = 'zxy.gif'
等等
我将在幻灯片放映中使用该数组.
这当然是可能的.查看
the documentation for opendir并将每个文件推送到结果数组.如果您正在使用PHP5,请查看
DirectoryIterator.它是一种更平滑,更清晰的方式来遍历目录的内容!
原文链接:https://www.f2er.com/php/135852.html编辑:在opendir上构建:
$dir = "/etc/PHP5/"; // Open a known directory,and proceed to read its contents if (is_dir($dir)) { if ($dh = opendir($dir)) { $images = array(); while (($file = readdir($dh)) !== false) { if (!is_dir($dir.$file)) { $images[] = $file; } } closedir($dh); print_r($images); } }