我想在php中获取匹配文件我已经尝试了更多时间 例如......
我的目录文件
1.254450_abcd.mp3
2.101215_apple.mp4
3.102545_efgf.php
我只找到像这样的号码254450
$mypath = "/files/" ;
$find = "254450" ;
//i want get matched full name
echo "$filename" ;// get 254450_abcd.mp3
else
"file not found " ;
答案 0 :(得分:3)
您可以使用scandir
和preg_grep
。
$mypath = "/files/" ;
$find = "254450" ;
$files = scandir($mypath);
$matches = preg_grep("/" . $find . "/", $files);
$matches
现在是一个文件与$ find
这是一个半工作的例子。我用数组中的文件替换了scandir,就像scandir返回它们一样 https://3v4l.org/QullZ