我可以在这方面使用一些帮助。我必须从一个目录中获取文件列表,并将它们作为数组返回,但 key 需要与 value 相同,因此输出将如下所示:
array(
'file1.png' => 'file1.png',
'file2.png' => 'file2.png',
'file3.png' => 'file3.png'
)
我找到了这段代码:
function images($directory) {
// create an array to hold directory list
$results = array();
// create a handler for the directory
$handler = opendir($directory);
// open directory and walk through the filenames
while ($file = readdir($handler)) {
// if file isn't this directory or its parent, add it to the results
if ($file != "." && $file != "..")
{
$results[] = $file;
}
}
// tidy up: close the handler
closedir($handler);
// done!
return $results;
}
它工作正常,但它返回常规数组。
有人可以帮我弄这个吗?
最后还有一个小提示,我只需要列出图像文件(png、gif、jpeg)。