我正在尝试显示指定目录中的所有图像。
以下代码列出了所有允许的文件名:
function getDirectoryList()
{
// create an array to hold directory list
$results = array();
// create a handler for the directory
$handler = opendir($this->currentDIR);
// open directory and walk through the filenames
while ($file = readdir($handler)) {
// Make sure we get allowed images types
if ($this->allowedFileType($file,$this->allowedImageTypes) )
{
$results[] = $file;
}
}
// tidy up: close the handler
closedir($handler);
// done!
return $results;
}
(...)
$images = getDirectoryList();
foreach($images as $img) {
echo "<li>".$img."</li>";
}
如何获取文件大小和 MIME 类型?我读到它mime_content_type
已被弃用,我应该使用finfo_file代替。但我在这方面做得不是很成功。
我必须使用/usr/share/misc/magic
来获取文件信息吗?我不能使用 GD 库吗?
我看过很多例子,但它们很旧并且效果不佳。
任何帮助表示赞赏。