我必须使用 PHP 函数递归地返回父元素的所有子元素,但是,当我尝试在数组的父元素中获取返回的子元素时,我收到错误,或者子元素刚刚被添加到数组的根级别。如何修改此函数以将子元素插入到子数组的父元素中?
public function getAllChilds($Parent_ID, $level_identifier="", $start=true) { // get all the childs of all the levels under a parent as a tree
$immediate_childs=$this->getImmediateChilds($Parent_ID, $this- >extra_condition, $this->order_by_phrase);
if(count($immediate_childs)) {
foreach($immediate_childs as $chld) {
$chld[$this->item_list_field_name]=$level_identifier.$this->item_pointer.$chld[$this->item_list_field_name];
array_push($this->all_childs,$chld);
$this->getAllChilds($chld[$this->item_identifier_field_name], ($level_identifier.$this->level_identifier), false);
}
}
if($start) {
return $this->all_childs;
}
}
private function getImmediateChilds($parent_identifier_field_value, $extra_condition="", $order_by_phrase="") { // get only the direct/immediate childs under a parent
$sql="SELECT * FROM `".$this->db_table."` WHERE `".$this->parent_identifier_field_name."`='".$parent_identifier_field_value."' ".$extra_condition." ".$order_by_phrase;
$res=mysql_query($sql);
$childs=array();
while($val=mysql_fetch_assoc($res)) {
array_push($childs,$val);
}
return $childs;
}
这一行是在数组中插入子元素的行,但我希望将子元素插入其父元素中,添加另一个名为 children 的数组元素,它是父元素中放置子元素返回元素的目标数组。
array_push($this->all_childs,$chld);
请帮忙!!该函数的目标是最终返回一个多级数组树,该数组树将转换为 JSON 树。
谢谢
这是完整的课程代码:
<?php
class ParentChild {
//properties which hold database and table related information : start
var $db_host;
var $db_user;
var $db_pass;
var $db_database;
var $db_table;
var $item_identifier_field_name; //may be the primary key of the table : as decided by the db designer
var $parent_identifier_field_name; //the fileld name in the table which holds the value of the item_identifier_field_name any item's parent : as decided by the db designer
var $item_list_field_name; //field name in the table whose value will be shown in the list or tree (like name or any id etc.) : as choosen by the programmer
var $extra_condition=""; //if any extra condition should be added with the query : as desided by the programmer
var $order_by_phrase=""; //if any order by phrase should be added with the query : as desided by the programmer
//properties which hold database and table related information : end
var $level_identifier = " "; //no. of level of any item as per the generated tree : it will appear number of level times before the item in the list/tree
var $item_pointer = "|-";
var $all_childs = array(); //contains the entire tree or list starting from a given root element
var $item_path = array(); //contains the total path of a given element/node(the list of elements starting from the top level root node to the given element/node)
public function getAllChilds($Parent_ID, $level_identifier="", $start=true) { // get all the childs of all the levels under a parent as a tree
$immediate_childs=$this->getImmediateChilds($Parent_ID, $this->extra_condition, $this->order_by_phrase);
if(count($immediate_childs)) {
foreach($immediate_childs as $chld) {
$chld[$this->item_list_field_name]=$level_identifier.$this->item_pointer.$chld[$this->item_list_field_name];
array_push($this->all_childs,$chld);
$this->getAllChilds($chld[$this->item_identifier_field_name], ($level_identifier.$this->level_identifier), false);
}
}
if($start) {
return $this->all_childs;
}
}
private function getImmediateChilds($parent_identifier_field_value, $extra_condition="", $order_by_phrase="") { // get only the direct/immediate childs under a parent
$sql="SELECT * FROM `".$this->db_table."` WHERE `".$this->parent_identifier_field_name."`='".$parent_identifier_field_value."' ".$extra_condition." ".$order_by_phrase;
$res=mysql_query($sql);
$childs=array();
while($val=mysql_fetch_assoc($res)) {
array_push($childs,$val);
}
return $childs;
}
public function getItemPath($item_id,$start=true){ //returns the total path of a given item/node(the list of elements starting from the top level root node to the given item/node)
if($item_id != 0) {
$sql="SELECT * FROM `".$this->db_table."` WHERE `".$this->item_identifier_field_name."`='".$item_id."' ";
$res=mysql_query($sql);
$itemdata=mysql_fetch_assoc($res);
array_push($this->item_path,$itemdata);
if($itemdata[$this->parent_identifier_field_name]!=0) {
$this->item_path=$this->getItemPath($itemdata[$this->parent_identifier_field_name],false);
}
if ($start) {
$this->item_path=array_reverse($this->item_path);
}
}
return $this->item_path;
}
public function db_connect(){
$conn = mysql_connect($this->db_host, $this->db_user, $this->db_pass);
if($conn) {
mysql_select_db($this->db_database, $conn);
}
return $conn;
}
public function db_disconnect(){
mysql_close();
}
}
?>