1 回答
TA贡献1824条经验 获得超6个赞
这很难测试,但我认为问题在于你一直在添加$str。所以每次循环,你都会在上面添加下一个级别的字符串,最终你会重置它。
而不是那样做,这需要$str并添加额外的部分,将它分配给一个新的字符串并使用这个值,包括将它传递到下一个级别......
private function _criteriaRec(&$result, $parentId, $str) {
$relations = parent::getAll('objects_relations', 'id, object_id_2', ['object_id', $parentId, 'attr', 'criteria']); // here I'm extracting the objects from DB
if(!empty($relations)){
foreach ($relations as $relation) {
$object = parent::get('objects', 'id, title', '', $relation['object_id_2']);
$newStr = "$str.$object[title]";
$result[] = array(
'parent' => $parentId,
'child' => $relation['object_id_2'],
'title' => $object['title'],
'str' => $newStr
);
$this->_criteriaRec($result, $relation['object_id_2'], $newStr);
}
}
return $result;
}
由于我无法对此进行测试,因此无法检查。
- 1 回答
- 0 关注
- 84 浏览
添加回答
举报