我需要处理文件夹的所有xml文件:
foreach(glob("folder/*.xml") as $file) {
$reader = new XMLReader;
$reader->open($file);
// need to know the filename
}
在处理文件时,我需要知道文件名。即如果file =“folder / file.xml”我想得到“文件”。我怎么做?我需要使用RegEx吗?
答案 0 :(得分:0)
答案 1 :(得分:0)
答案 2 :(得分:0)
您可以将pathinfo用于此
echo pathinfo($file, PATHINFO_FILENAME);