Mysql
 sql >> Database >  >> RDS >> Mysql

Funzione ricorsiva per commenti e risposte all'applicazione PHP

Il nocciolo del problema è questo:

$comments = $commentClass->fetch_article_comments($article_id);

Presumo che questa funzione da qualche parte crei ed esegua SQL, che è simile a SELECT ... WHERE comments.article_id=$article_id . Questo non è sufficiente:hai bisogno di qualcosa come

$comments = $commentClass->fetch_article_comments($article_id, $parent_id);

che si traduce in SQL simile a SELECT ... WHERE comments.article_id=$article_id AND comments.comment_parent ($parent_id>0)?"=$parent_id":"IS NULL"

Ora puoi scrivere la tua funzione PHP:

function display_comments ($article_id, $parent_id=0, $level=0) {
  $comments = $commentClass->fetch_article_comments($article_id, $parent_id);
  foreach($comments as $comment) {
        $comment_id = $comment['comment_id'];   
        $member_id = $comment['member_id'];
        $comment_text = $comment['comment_text'];
        $comment_timestamp = timeAgo($comment['comment_timestamp']);  //get time ago

        //render comment using above variables
        //Use $level to render the intendation level

        //Recurse
        display_comments ($article_id, $comment_id, $level+1);
    }
}

E infine chiamalo con display_comments ($article_id);