iは、テーブル内の隣接関係モデル構造を持っているので、私は持って非常に素晴らしいソリューション回数のuser_id PARENT_ID下PARENT_ID下user_idを数える機能
function display_children($parent, $level) {
$count = 0;
$result = mysql_query('SELECT user_id FROM sponsers '.'WHERE parent_id="'.$parent.'"');
while ($row = mysql_fetch_array($result))
{
$var = str_repeat(' ',$level).$row['user_id']."\n";
//echo $var after remove comment check tree
// i call function in while loop until count all user_id
$count += 1 +$this->display_children($row['user_id'], $level+1);
}
return $count; // it will return all user_id count under parent_id
}
コール機能
display_children(999, 0)
どのようにツリー構造を[上の画像](http://i.stack.imgur.c)のように出力しましたか? om/p4XdG.gif)?? –