我想使用pathinfo()
从文件名中提取扩展名。
现在打印:
array(4) {
["dirname"]=>
string(33) "E:/folder/some-folder-with.dots"
["basename"]=>
string(13) "some-folder-with.dots"
["extension"]=>
string(10) ".dots"
["filename"]=>
string(2) "some-folder-with"
}
我现在使用的代码:
function rglob($pattern, $flags = 0) {
$files = glob($pattern, $flags);
foreach (glob(dirname($pattern).'/*', GLOB_ONLYDIR|GLOB_NOSORT) as $dir) {
$files = array_merge($files, rglob($dir.'/'.basename($pattern), $flags));
}
return $files;
}
$dir = 'E:/folder/*/*.*';
$files = rglob($dir);
# LOOP
foreach($files AS $file) {
# KONTROLL
if($file != '.' AND $file != '..') {
# VARIABEL
$testing = pathinfo($file);
$fname = glob($dir.'/*/*.'.$testing['extension']);
echo '<pre>';
var_dump($testing);
echo '</pre>';
}
}
此代码的功能是,我想获取一个文件夹中的每个文件,然后获取它找到的每个文件的扩展名,以便为我的网站找到正确的扩展名。就像现在一样,我不能在我想要的文件名中加点。
我该如何做到这一点?
答案 0 :(得分:2)
您需要来自SPL的DirectoryIterator类。
http://php.net/manual/en/class.directoryiterator.php
这只是你可以用它做的一个例子,但你可以自定义你从中获得的很多东西:
array ( 0 => '/var/www/html/UusProjekt/intl/homepage_template.php', 1 => '/var/www/html/UusProjekt/intl/config.php', 2 => '/var/www/html/UusProjekt/intl/english.php', 3 => '/var/www/html/UusProjekt/intl/spanish.php', 4 => '/var/www/html/UusProjekt/intl/index.php', )