您的代码有两个问题:
- 您没有在子文件的路径中包含源文件的目录,因此永远找不到这些文件。
- 您没有从函数返回总数,以便更高级别的调用可以添加子文件的总数
更正这些问题,并将变量重命名为有意义的东西会给出以下代码:
function fileProcessor($filename){
if(file_exists(trim($filename))){
$total = 0;
$rows = file($filename, FILE_SKIP_EMPTY_LINES);
foreach($rows as $data) {
if(!preg_match("/.txt/i", $data)){
$num = floatval($data);
$total += $num;
}else {
$total += fileProcessor(dirname($filename)."/".trim($data));
}
}
echo $filename. ' - ' .($total)."<br>\n";
}else{
echo "File does not exist<br>\n";
}
return $total;
}
fileProcessor('text_files/first.txt');
输出:
text_files/third.txt - 3
text_files/second.txt - 8
text_files/first.txt - 15
这会按照总计最终累积的顺序列出文件,因此最低级别首先出现。
[编辑] 如果文件中出现两个或多个文件名,我发现结果顺序存在问题。这是一个处理这个问题的重做版本。
要按照遇到的顺序列出文件,需要颠倒自然顺序。在下面的新版本中,我将文件名放在一个$fileList
通过引用传递的数组中。该函数的每次新调用都将其结果添加到该数组的末尾。处理完成后,将显示阵列。
function fileProcessor( &$fileList){
// Get the last filename in the array
end($fileList);
$filename = key($fileList);
if(file_exists(trim($filename))){
// Accumulate the values
$fileList[$filename] = 0;
$rows = file($filename, FILE_SKIP_EMPTY_LINES);
foreach($rows as $data) {
if(!preg_match("/.txt/i", $data)){
$num = floatval($data);
$fileList[$filename] += $num;
}else {
// Recursive call. Add the next filename to the array
$fileList[dirname($filename)."/".trim($data)]=0;
$fileList[$filename] += fileProcessor($fileList);
}
}
} else {
$fileList[$filename]= "File does not exist: $filename";
}
// return the total for the file to add to the accumulator for the file above.
return $fileList[$filename];
}
// Place the initial file in the array
$results = ['text_files/first.txt' => 0];
// run the function
fileProcessor($results);
// display the results
foreach($results as $filename=>$total) {
echo $filename.' - '.$total."<br>\n";
}
输出:
text_files/first.txt - 15
text_files/second.txt - 8
text_files/third.txt - 3