递归根据父ID 找所有子类ID

function getinfo($pid){
    $str = '';
    $row = M('user')->where(array('pid'=>$pid))->select();
    if($row){
        foreach($row as $key => $val ){
            $str .= ','.$val['id'];
            $str .= getinfo($val['id']);
        }
    }
    return $str;
}
原文地址:https://www.cnblogs.com/finnlee/p/5327221.html