在递归函数 php 中返回


Return in recursive function php

我在递归函数输出方面遇到了一个小问题。代码如下:

function getTemplate($id) {
    global $templates;
    $arr = $templates[$id-1];
    if($arr['parentId'] != 0) {
        $arr['text'] .= str_replace($arr['attr'], $arr['text'], getTemplate($arr['parentId']));
    }
    return $arr['text']; 
}

问题是该函数在每次迭代时都会返回一个值,如下所示:

文件.exe
类别/文件.exe
根/类别/文件.exe

我只需要类似于完整路径的最后一个字符串。有什么建议吗?

UPD:完成,问题出在$arr['text'] .= str_replace中的点

试试这个。我知道它使用全局变量,但我认为这应该有效

$arrGlobal = array();
function getTemplate($id) {
    global $templates;
    global $arrGlobal;
    $arr = $templates[$id-1];
    if($arr['parentId'] != 0) {
       array_push($arrGlobal, getTemplate($arr['parentId']));
    }
    return $arr['text'];
}
$arrGlobal = array_reverse($arrGlobal);
echo implode('/',$arrGlobal);  

试试这个,

function getTemplate($id) {
    global $templates;
    $arr = $templates[$id-1];
    if($arr['parentId'] != 0) {
    return $arr['text'] .= str_replace($arr['attr'], $arr['text'], getTemplate($arr['parentId']));
    }
}

试一试:

function getTemplate($id, array $templates = array())
{
  $index = $id - 1;
  if (isset($templates[$index])) {
    $template = $templates[$index];
    if (isset($template['parentId']) && $template['parentId'] != 0) {
      $parent = getTemplate($template['parentId'], $templates);
      $template['text'] .= str_replace($template['attr'], $template['text'], $parent);
    }
    return $template['text'];
  }
  return '';
}
$test = getTemplate(123, $templates);
echo $test;