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; }
原文:http://www.cnblogs.com/finnlee/p/5327221.html