我在下面有两个功能
function ListFiles($dir) {
if($dh = opendir($dir)) {
$files = array();
$topics = array();
$inner_files = array();
while($file = readdir($dh)) {
if($file != "." && $file != ".." && $file[0] != '.') {
array_push($topics, $file);
if(is_dir($dir . "/" . $file)) {
$inner_files = ListFiles($dir . "/" . $file);
if(is_array($inner_files)) $files = array_merge($files, $inner_files);
} else {
array_push($files, $dir . "/" . $file);
}
}
}
closedir($dh);
$topics = array();
$i = 0;
foreach ($files as $file) {
//wrong result
$topics[] = getTopicFromPath($file);
//correct result
//$topics[] = getTopicFromPath("/Users/Unknown/Sites/sample/training/topic/acq/19ddb673359747ee9095.txt")
}
return $topics;
}
}
function getTopicFromPath($path){
//$path = /Users/Unknown/Sites/sample/training/topic/acq/19ddb673359747ee9095.txt
$string1 = substr($path,strpos($path,"topic/"));
//$string1 = topic/acq/19ddb673359747ee9095.txt
$string2 = str_replace("topic/", "", $string1);
//$string2 = acq/19ddb673359747ee9095.txt
$string3 = strstr($string2, '/', true);
//$string3 = null
//expecting $string3 = 'acq'
return $string3;;
}
问题是 getTopicFromPath($path) 无法从 readdir() 方法解析字符串。但是如果我放一个纯字符串,结果是正确的。请检查代码是否清楚。
我想要做的是获取文件路径,将其父文件夹保存为主题。
使用另一种方法获取文件可能会解决问题。但我很好奇这些功能有什么问题?