我使用我的php脚本将用户上传的文件(如pdf图像和txt文件)存储在单独的文件夹中我想从文件夹上传中检索文件名,并在组中提供pdf和txt以及搜索特定文件的方式
我还需要将文件重命名为$ja
变量
$ja
$da = date("dmY");
$ja = $uid.$da;
move_uploaded_file($mi, $uploadpath)
也使用了我在堆栈中找到的代码
示例01:
<?php
// read all files inside the given directory
// limited to a specific file extension
$files = glob("./ABC/*.txt");
?>
示例02:
<?php
// perform actions for each file found
foreach (glob("./ABC/*.txt") as $filename) {
echo "$filename size " . filesize($filename) . "\n";
}
?>
答案 0 :(得分:4)
scandir();功能会帮助你
<?php
$dir = '/tmp';
$files1 = scandir($dir);
print_r($files1);
?>
http://www.php.net/manual/en/function.scandir.php
现在,您在指定的位置拥有所有文件的数组,您可以使用数组函数来完成工作
答案 1 :(得分:1)
您可以尝试使用scandir列出目录,然后根据需要在您将获得的文件名的php数组中进行过滤