1

私はphp.Iを使用してスレッド化されたコメントを作成しています.私はこのコードを使用してスレッド化されたコメントを表示します.スレッド化されたコメントの表示を制限する方法を教えてください.

私はこのような必要があります

comment 1
 -->comment 1.1
 -->comment 1.1.1
 -->comment 1.2
 -->comment 1.2.1
 -->comment 1.2.2
comment 2
  -->comment 2.1
  -->comment 2.1.2

しかし、このようではありません

comment 1
 -->comment 1.1
   -->comment 1.1.1
 -->comment 1.2
    -->comment 1.2.1
      -->comment 1.2.1.1
comment 2
  -->comment 2.1
    -->comment 2.1.2

私のphpコードはこのようなものです

<div id='wrapper'>
<ul>
<?php
$q = "select idvideo,discussion from video_discussion where 
                     video_discussion.idvideo = 972 AND parent_id = 0
$r = mysql_query($q);
while($row = mysql_fetch_assoc($r)):
    getComments($row);
endwhile;
?>
</ul>

および機能ページで

<?php
function getComments($row) {
    echo "<li class='comment'>";
    echo "<div class='aut'>".$row['discussion']."</div>";       
    echo "<a href='#comment_form' class='reply' id='".$row['idvideo_discussion']."'>Reply</a>";

$q=" select idvideo,discussion from video_discussion where video_discussion.idvideo = 972 and  parent_id =".$row['idvideo_discussion'].";   

    $r = mysql_query($q);
    if(mysql_num_rows($r)>0)
        {
        echo "<ul>";
        while($row = mysql_fetch_assoc($r)) {
            getComments($row);
        }
        echo "</ul>";
        }
    echo "</li>";
}
?>

これに対する解決策を提案してください

4

2 に答える 2

3

必要な最大深度で getComments に 2 番目のパラメーターを追加できます。

function getComments($row, $depth=3)
{
    echo ...

    if (0 === $depth) {
        return;
    }

    ...
        while($row = mysql_fetch_assoc($r)) {
            getComments($row, $depth - 1);
        }
    ...
}
于 2012-02-09T17:15:06.733 に答える
0

制限を定義する

$limit = 30; $count_displayed = 0;

getComments($row) で、表示されるカウントをインクリメントし、制限に達したかどうかを確認します。

function getComments($row) {
    $count_displayed++;
    if($count_displayed >= $limit) return;
    ...
}
于 2012-02-09T17:16:16.197 に答える