要獲取文件夾下所有文件名,可以使用PHP的scandir()
函數。scandir()
函數返回一個包含文件和文件夾名的數組。可以使用循環遍歷該數組來獲取所有文件名。
以下是一個示例代碼:
$dir = '/path/to/directory'; // 文件夾路徑
// 獲取文件夾下所有文件和文件夾名
$files = scandir($dir);
// 遍歷數組,獲取文件名
foreach ($files as $file) {
// 排除當前文件夾(.)和上級文件夾(..)
if ($file != '.' && $file != '..') {
echo $file . '
';
}
}
請注意,在使用scandir()
函數時,要確保指定的文件夾路徑是正確的,并且PHP腳本有足夠的權限來訪問該文件夾。