ThinkPHP 무한 분류 원리 댓 글 및 답장 기능 인 스 턴 스 구현
11929 단어 ThinkPHP
기능 적 으로 이 프로그램 은 무한 급 댓 글 과 답장,즉 댓 글 에 대한 답장,댓 글 에 대한 답장 을 실현 할 수 있다.물론 댓 글 에 만 답장 할 수 있 도록 제한 적 인 통 제 를 할 수 있 습 니 다.관건 은 템 플 릿 코드 에서 답장 한 댓 글 의'이 댓 글 에 답장'을 없 애 는 것 입 니 다.벽돌 찍 으 러 오신 걸 환영 합 니 다!
프로그램 효 과 는 다음 그림 과 같 습 니 다.
전체 소스 코드 는 여 기 를 클릭 하 십시오본 사이트 다운로드
데이터 시트:
-- ----------------------------
-- 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:
// +----------------------------------------------------------------------
// $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');
}
// +----------------------------------------------------------------------
// | 。 url ,
// +----------------------------------------------------------------------
public function tourl(){
$this->gettourl('Guestbook');
}
}
?>
<?php
// +----------------------------------------------------------------------
// | WBlog
// +----------------------------------------------------------------------
// | Copyright (c) 2008 http://www.w3note.com All rights reserved.
// | Author:
// +----------------------------------------------------------------------
// $Id$
/**
+------------------------------------------------------------------------------
* @function GuestbookModel.class.php
+------------------------------------------------------------------------------
*/
class GuestbookModel extends RelationModel{
// +----------------------------------------------------------------------
// | $_validate
// +----------------------------------------------------------------------
protected $_validate = array(
array('email','require',' !'),
array('email','email',' !'),
);
// +----------------------------------------------------------------------
// | $_auto
// +----------------------------------------------------------------------
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'])==' '){
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()
// +----------------------------------------------------------------------
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 ,
// +----------------------------------------------------------------------
// |$pagesize , 30
// +----------------------------------------------------------------------
// | ,
// +----------------------------------------------------------------------
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 프레임 워 크 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ThinkPHP5 일반 데이터 작업1. 데이터베이스는:thinkphp5, 새 데이터 테이블think_test 2.\application\database.php에서 수정 3.\application\index\model 다음에 새 모델 파일 테스트.ph...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.