我想在id的所有父id上获得一个数组

时间:2015-10-27 12:09:40

标签: php mysql loops

我有一个有3列的表。 id, parent_id and text。我想要一个返回parent id的所有id的函数。

enter image description here

假设我传递的参数4ID,数组应返回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>';
    }
}

2 个答案:

答案 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']);