ThinkPHP無限級分類原理實(shí)現(xiàn)留言與回復(fù)功能實(shí)例
本文所述留言板程序使用了無限級分類的原理,可以實(shí)現(xiàn)無限級留言與回復(fù)。留言列表gclist保留了留言層次空格,使留言--回復(fù)層次分明。分享給大家供大家參考。具體分析如下:
功能上,本程序可以實(shí)現(xiàn)無限級留言與回復(fù),即對留言回復(fù),對回復(fù)的留言回復(fù)。當(dāng)然你也可以作有限制的控制,使其只對留言回復(fù),關(guān)鍵是在模板代碼中去掉回復(fù)的留言中的“回復(fù)該留言”即可。歡迎去拍磚!
程序效果如下圖所示:
完整源碼點(diǎn)擊此處本站下載。
數(shù)據(jù)表:
-- Table structure for `wb_guestbook`
-- ----------------------------
DROP TABLE IF EXISTS `wb_guestbook`;
CREATE TABLE `eway_guestbook` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(10) NOT NULL,
`email` varchar(50) NOT NULL,
`path` varchar(100) NOT NULL,
`username` varchar(30) NOT NULL,
`updatetime` int(10) NOT NULL,
`ip` varchar(15) NOT NULL,
`url` varchar(200) NOT NULL,
`inputtime` int(10) NOT NULL,
`content` text NOT NULL,
`verify` varchar(32) NOT NULL,
`isreply` tinyint(1) NOT NULL,
`status` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=42 DEFAULT CHARSET=utf8;
代碼:
// +----------------------------------------------------------------------
// | WBlog
// +----------------------------------------------------------------------
// | Copyright (c) 2008 http://www.w3note.com All rights reserved.
// +----------------------------------------------------------------------
// | Author: 網(wǎng)菠蘿果
// +----------------------------------------------------------------------
// $Id$
/**
+------------------------------------------------------------------------------
* @class 留言板控制器GuestbookAction.class.php
+------------------------------------------------------------------------------
*/
class GuestbookAction extends CommonAction {
public function index(){
$garr= D('Guestbook')->gclist("id,username,inputtime,pid,url,content,path,concat(path,'-',id) as bpath");
$this->assign('Gklist', $garr['list']);
$this->assign('page',$garr['page']);
$this->display();
}
// +----------------------------------------------------------------------
// | 添加留言
// +----------------------------------------------------------------------
public function add(){
$this->adddata('Guestbook');
}
// +----------------------------------------------------------------------
// | 網(wǎng)址跳轉(zhuǎn)。如在表單url添加網(wǎng)址的話,點(diǎn)擊會(huì)跳轉(zhuǎn)到相關(guān)網(wǎng)站
// +----------------------------------------------------------------------
public function tourl(){
$this->gettourl('Guestbook');
}
}
?>
<?php
// +----------------------------------------------------------------------
// | WBlog
// +----------------------------------------------------------------------
// | Copyright (c) 2008 http://www.w3note.com All rights reserved.
// | Author: 網(wǎng)菠蘿果
// +----------------------------------------------------------------------
// $Id$
/**
+------------------------------------------------------------------------------
* @function 留言板模型 類GuestbookModel.class.php
+------------------------------------------------------------------------------
*/
class GuestbookModel extends RelationModel{
// +----------------------------------------------------------------------
// | $_validate表單自動(dòng)驗(yàn)證
// +----------------------------------------------------------------------
protected $_validate = array(
array('email','require','請?zhí)顚懩泥]箱!'),
array('email','email','郵箱格式錯(cuò)誤!'),
);
// +----------------------------------------------------------------------
// | $_auto表單自動(dòng)填充
// +----------------------------------------------------------------------
protected $_auto=array(
array('status','1'),
array('inputtime','time',1,'function'),
array('content','content',1,'callback'),
array('url','geturl',1,'callback'),
array ('inputtime','time',1,'function'),
array('path','path',3,'callback'),
array('username','getusername',3,'callback'),
);
// +----------------------------------------------------------------------
// | getusername()過濾用戶名
// +----------------------------------------------------------------------
public function getusername(){
if (isset ($_POST['username'])) {
if(trim($_POST['username'])=='網(wǎng)菠蘿果'){
return $data= ' ̄□ ̄';
}elseif(strlen($_POST['username']) >10){
return $data= msubstr($_POST['username'],0,5);
}else{
return $data= $_POST['username'];
}
}
}
// +----------------------------------------------------------------------
// | path()返回子類的path,父類的path的值為0
// +----------------------------------------------------------------------
public function path(){
$pid=isset($_POST['pid'])?(int)$_POST['pid']:0;
$id=$_POST['id'];
if($pid==0){
return 0;
}
$fat=$this->where(array('id' => $pid))->find();
$data=$fat['path'].'-'.$fat['id'];
return $data;
}
// +----------------------------------------------------------------------
// | content()過濾留言內(nèi)容
// +----------------------------------------------------------------------
public function content() {
if (isset ($_POST['content']) && !empty ($_POST['content'])) {
$data =deleteHtmlTags($_POST['content']);
$data =safeHtml($data);
if (strlen($data) > 1000) {
$data = msubstr($data, 0, 500);
}
return $data;
}
}
// +----------------------------------------------------------------------
// | content()過濾URL
// +----------------------------------------------------------------------
public function geturl(){
if (isset ($_POST['url'])) {
$data = deleteHtmlTags($_POST['url']);
$data = safeHtml($data);
return $data=$data?$data:"";
}
}
// +----------------------------------------------------------------------
// |gclist($field,$where='',$pagesize=30)留言列表
// +----------------------------------------------------------------------
// |$field,字段
// +----------------------------------------------------------------------
// |$where查詢條件,默認(rèn)為空
// +----------------------------------------------------------------------
// |$pagesize分頁記錄,默認(rèn)為30
// +----------------------------------------------------------------------
// |使用方法,看上面的控制器調(diào)用
// +----------------------------------------------------------------------
public function gclist($field,$where='',$pagesize=30) {
import("ORG.Util.Page");
$count = $this->field('id')->where($where)->count();
$P = new Page($count, $pagesize);
$list=$this->field($field)->where($where)->order('bpath,id')->limit($P->firstRow . ',' . $P->listRows)->select();
foreach ($list as $k => $v) {
$list[$k]['count'] = count(explode('-', $v['bpath']));
$list[$k]['tousername']=$this->where(array('id'=> $v['pid']))->getField('username');
$str = '';
if ($v['pid'] <> 0) {
for ($i = 0; $i < $list[$k]['count'] * 2; $i++) {
$str .= ' ';
}
$str .= ' ';
}
$list[$k]['space'] = $str;
}
$P->setConfig('header', '篇');
$P->setConfig('prev', "«");
$P->setConfig('next', '»');
$P->setConfig('first', '|«');
$P->setConfig('last', '»|');
$page = $P->show();
$arr=array('page'=>$page,'list'=>$list);
return $arr;
}
}
?>
希望本文所述對大家的ThinkPHP框架程序設(shè)計(jì)有所幫助。
- thinkphp5實(shí)現(xiàn)無限級分類
- 使用ThinkPHP的自動(dòng)完成實(shí)現(xiàn)無限級分類實(shí)例詳解
- Thinkphp無限級分類代碼
- ThinkPHP自動(dòng)填充實(shí)現(xiàn)無限級分類的方法
- thinkphp框架無限級欄目的排序功能實(shí)現(xiàn)方法示例
- thinkPHP實(shí)現(xiàn)遞歸循環(huán)欄目并按照樹形結(jié)構(gòu)無限極輸出的方法
- thinkphp實(shí)現(xiàn)無限分類(使用遞歸)
- ThinkPHP實(shí)現(xiàn)遞歸無級分類——代碼少
- Thinkphp框架使用list_to_tree 實(shí)現(xiàn)無限級分類列出所有節(jié)點(diǎn)示例
相關(guān)文章
ThinkPHP框架分布式數(shù)據(jù)庫連接方法詳解
這篇文章主要介紹了ThinkPHP框架分布式數(shù)據(jù)庫連接方法,結(jié)合實(shí)例形式詳細(xì)分析了thinkPHP框架針對分布式數(shù)據(jù)庫的連接方法、操作技巧與相關(guān)注意事項(xiàng),需要的朋友可以參考下2017-03-03php中實(shí)現(xiàn)用數(shù)組嫵媚地生成要執(zhí)行的sql語句
這篇文章主要介紹了php中實(shí)現(xiàn)用數(shù)組嫵媚地生成要執(zhí)行的sql語句,本文直接給出代碼示例,需要的朋友可以參考下2015-07-07Codeigniter整合Tank Auth權(quán)限類庫詳解
相交其他CodeIgniter的類庫,tank_auth,配置簡單,使用也簡單,并且作者也一直在更新。這篇文章主要介紹了Codeigniter整合Tank Auth權(quán)限類庫詳解,需要的朋友可以參考下2014-06-06詳解PHP數(shù)據(jù)壓縮、加解密(pack, unpack)
網(wǎng)絡(luò)通信、文件存儲(chǔ)中經(jīng)常需要交換數(shù)據(jù),為了減少網(wǎng)絡(luò)通信流量、文件存儲(chǔ)大小以及加密通信規(guī)則,本文介紹了PHP數(shù)據(jù)壓縮、加解密,有興趣的可以了解一下。2016-12-12淺析Yii2集成富文本編輯器redactor實(shí)例教程
yii2集成另外一個(gè)強(qiáng)大好用的富文本編輯器Redactor。接下來通過本文給大家介紹Yii2集成富文本編輯器redactor實(shí)例教程,感興趣的朋友一起學(xué)習(xí)吧2016-04-04php實(shí)現(xiàn)微信支付之現(xiàn)金紅包
這篇文章主要為大家詳細(xì)介紹了php實(shí)現(xiàn)微信支付之現(xiàn)金紅包,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-05-05