主頁 > 知識(shí)庫 > thinkPHP框架實(shí)現(xiàn)的無限回復(fù)評(píng)論功能示例

thinkPHP框架實(shí)現(xiàn)的無限回復(fù)評(píng)論功能示例

熱門標(biāo)簽:h5 地圖標(biāo)注 合肥外呼系統(tǒng)app 沈陽人工智能電銷機(jī)器人公司 電銷機(jī)器人-快迭智能 哈爾濱400電話辦理到易號(hào)網(wǎng) 寶安400電話辦理 拉薩打電話機(jī)器人 智能外呼電銷系統(tǒng) 高識(shí)別電銷機(jī)器人

本文實(shí)例講述了thinkPHP框架實(shí)現(xiàn)的無限回復(fù)評(píng)論功能。分享給大家供大家參考,具體如下:

如果只是簡單的單回復(fù)的評(píng)論的話,那樣操作是很簡單的。但問題就是如何實(shí)現(xiàn)無限的回復(fù)評(píng)論呢!那么如果只是單回復(fù)的話,需要建好多的數(shù)據(jù)表,是根本不可能實(shí)現(xiàn)的。那么用TP框架實(shí)現(xiàn)無限回復(fù)評(píng)論(GitHub源代碼下載地址:https://github.com/Jonybin/responsemessage)下載完成后,注意數(shù)據(jù)庫的使用。

control控制器部分:

function CommentList($pid = 0, $commentList = array(), $spac = 0) {
    static $i = 0;
    $spac = $spac + 1; //初始為1級(jí)評(píng)論
    $List = M('comment')->
        field('id,add_time,author,content,pid')->
        where(array('pid' => $pid))->order("id DESC")->select();
    foreach ($List as $k => $v) {
      $commentList[$i]['level'] = $spac; //評(píng)論層級(jí)
      $commentList[$i]['author'] = $v['author'];
      $commentList[$i]['id'] = $v['id'];
      $commentList[$i]['pid'] = $v['pid']; //此條評(píng)論的父id
      $commentList[$i]['content'] = $v['content'];
      $commentList[$i]['time'] = $v['add_time'];
      // $commentList[$i]['pauthor']=$pautor;
      $i++;
      $this->CommentList($v['id'], $commentList, $spac);
    }
    return $commentList;
}

view視圖部分:

volist name="commentList" id="vo">
 eq name="vo.pid" value="0">hr class="solidline"/>else/>hr class="dottedline"/>/eq>
 div class="commentList " style="padding-left:{$vo['level']-1}cm">
   div>span class="user">
   if condition="($vo.pauthor eq NULL)">{$vo.author}
  else /> {$vo.author}span class="black" style="color: #000101">回復(fù)/span>{$vo.pauthor}
   /if>
 /span>a class="hf" id="{$vo.id}" style="float: right">回復(fù)/a>span class="hftime">{$vo.time|date="Y-m-d",###}/span>/div>
   div class="content">{$vo.content|reFace}/div>
 /div>
/volist>

完整實(shí)例代碼可點(diǎn)擊此處本站下載。

更多關(guān)于thinkPHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《ThinkPHP入門教程》、《thinkPHP模板操作技巧總結(jié)》、《ThinkPHP常用方法總結(jié)》、《codeigniter入門教程》、《CI(CodeIgniter)框架進(jìn)階教程》、《Zend FrameWork框架入門教程》及《PHP模板技術(shù)總結(jié)》。

希望本文所述對大家基于ThinkPHP框架的PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • ThinkPHP無限級(jí)分類原理實(shí)現(xiàn)留言與回復(fù)功能實(shí)例
  • thinkphp實(shí)現(xiàn)無限分類(使用遞歸)
  • thinkPHP實(shí)現(xiàn)遞歸循環(huán)欄目并按照樹形結(jié)構(gòu)無限極輸出的方法
  • ThinkPHP自動(dòng)填充實(shí)現(xiàn)無限級(jí)分類的方法
  • 解析thinkphp的左右值無限分類
  • 使用ThinkPHP的自動(dòng)完成實(shí)現(xiàn)無限級(jí)分類實(shí)例詳解
  • Thinkphp無限級(jí)分類代碼
  • thinkphp5實(shí)現(xiàn)無限級(jí)分類
  • PHP實(shí)現(xiàn)的無限分類類庫定義與用法示例【基于thinkPHP】
  • thinkphp5使用無限極分類
  • TP5.0框架實(shí)現(xiàn)無限極回復(fù)功能的方法分析

標(biāo)簽:梅州 成都 山東 威海 張家口 林芝 泰州 巴中

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《thinkPHP框架實(shí)現(xiàn)的無限回復(fù)評(píng)論功能示例》,本文關(guān)鍵詞  thinkPHP,框架,實(shí)現(xiàn),的,無限,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《thinkPHP框架實(shí)現(xiàn)的無限回復(fù)評(píng)論功能示例》相關(guān)的同類信息!
  • 本頁收集關(guān)于thinkPHP框架實(shí)現(xiàn)的無限回復(fù)評(píng)論功能示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章