我有一个有3列的表。 id, parent_id and text
。我想要一个返回parent id
的所有id
的函数。
假设我传递的参数4
是ID
,数组应返回4,3,2,1
,因为3是4的父级,2是3的父级,同样,1是2的父母。
我怎样才能做到这一点?
到目前为止我已尝试过这个。但这是返回阵列..
function getTree($id){
$arr = array();
$parent = mysql_query("SELECT parent_id FROM task WHERE id = '".$id."'");
$parent_query = mysql_fetch_assoc($parent);
if ($parent_query['parent_id']==0){
echo "This is the parent";
} else {
$arr[] = $id;
$arr[] = $parent_query['parent_id'];
$arr[] = getTopTree($parent_query['parent_id']);
echo '<pre>';
print_r($arr);
echo '</pre>';
}
}
答案 0 :(得分:3)
您可以像
一样创建自己的自定义功能function checkParentIds($id, $data = array()) {
$parent = mysql_query("SELECT parent_id FROM task WHERE id = '$id'");
$parent_query = mysql_fetch_assoc($parent);
if ($parent_query['parent_id'] > 0) {
$data[] = $parent_query['parent_id'];
checkParentIds($parent_query['parent_id'], $data);
} else {
$parent_result = (empty($data)) ? 1 : implode("','", $data);
}
return $parent_result;
}
答案 1 :(得分:1)
select id, group_concat(parent_id) as parents, test <yourtable> group by id;
然后在php中你可以爆炸检索行的相应列:
// ... retrieving all the rows stuff
$parentsIds = explode(',', $row['parents']);