本文實(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ù)功能的方法分析