给TinkPHP添加一个更新的标签的方法
我们知道,thinkphp的拓展案例blog,只告诉我们怎样去添加标签tag,却没有删除和更新标签的方法,我在前面的《怎样彻底删除thinkphp案例blog的标签?》为拓展案例blog写了一个删除标签的方法,接下来将写一个标签的更新方法.
一般情况下,我们写博客后,很少去改动标签了,但是如果我们改动标签如,删除,添加,减少标签怎么办呢?这无疑造成think_tag和think_tagged两个表垃圾信息的积累,好了,言归正转.
在更新标签时我们来了解两个参数:
$oldtags:更新前,存在thinphp_tag表中标签
$newstags:更新时,插入thinphp_tag之前,表单提交过来的标签
更新文章时,标签可能会有以下几种变化:
1、$newstags与$oldtags部分相同-> 添加或减少或修改标签,标签的个数和名称和原来部分相同。
2、$newstags与$oldtags完全相同->不修改标签
3、$newstags与$oldtags完全不同 ->添加或减少标签,并且标签的个数和名称和原来完全不同
对于2我们只要通过判断比较过滤即可,对于1、3通过判断比较后,再作删除或添加处理:
删除:要删除的标签名,在thinphp_tag已存在,当标签的count=1时,就把它删除掉,当count>1时,就减少1(count-1).
添加:要添加的标签名称,如果thinphp_tag表中已存在则count(count >1)在原来的基础上+1即count+1,如果不存在(count =0),则添加新标签,count+1.具体函数如下:
- public function updateTag($vo,$module) {
-
-
-
- $recordId= trim($vo['id']);
-
- if($vo['keywords']==''){
-
- $this->deltag($recordId);
-
- }else{
-
- $newtags = explode(' ', $vo['keywords']);
-
- $condition['recordId'] = $recordId;
-
- $tagged=M('Tagged');
-
- $tag=M('Tag');
-
- $taggedlist= $tagged->where($condition)->select();
-
- if($taggedlist !==false){
-
-
-
- foreach ($taggedlist as $key => $value) {
-
- $tagId=trim($value['tagId']);
-
- $tagvo=$tag->where('id='.$tagId)->find();
-
- $oldtags[]=$tagvo['name'];
-
- }
-
- $result=count(array_diff(array_diff($newtags,$oldtags),array_diff($oldtags,$newtags)));
-
- $result1=count(array_diff($newtags,$oldtags));
-
- $result2=count(array_diff($oldtags,$newtags));
-
-
-
- if(($result1 !== $result2) || ($result !==0)){
-
- $array_intersect=array_intersect($oldtags,$newtags);
-
- $oldtags_diff=array_diff($oldtags,$array_intersect);
-
- $newtags_diff=array_diff($newtags,$array_intersect);
-
-
-
-
-
- if(count($oldtags_diff) !==0){
-
-
-
- foreach ($oldtags_diff as $name) {
-
- $tagvo=$tag->where("module='$module' and name='$name'")->find();
-
- $count=intval($tagvo['count']);
-
-
-
- if($count==1){
-
- $tag->where('id='.$tagvo['id'])->delete();
-
- $tagged->where('tagId='.$tagvo['id'].' and recordId='.$recordId)->delete();
-
- }elseif($count > 1){
-
-
-
- $tag->where('id='.$tagvo['id'])->setDec('count',1);
-
- $tagged->where('tagId='.$tagvo['id'].' and recordId='.$recordId)->delete();
- }
- }
- }
-
-
- if(count($newtags_diff) !==0){
-
- foreach ($newtags_diff as $v) {
-
- $v = trim($v);
-
- if (!emptyempty($v)) {
-
-
-
- $map['module'] = $module;
-
- $map['name'] = $v;
-
- $tagg = $tag->where($map)->find();
-
- if ($tagg) {
-
- $tagId = $tagg['id'];
-
- $tag->where('id=' . $tagg["id"])->setInc('count', 1);
-
- } else {
-
- $t = array();
-
- $t["name"] = $v;
-
- $t["count"] = 1;
-
- $t["module"] = $module;
-
- $result = $tag->add($t);
-
- $tagId = $result;
-
- }
-
- }
-
-
-
- $t = array();
-
- $t["module"] = $module;
-
- $t["recordId"] = $recordId;
-
- $t["tagTime"] = time();
-
- $t["tagId"] = $tagId;
-
- $tagged->add($t);
-
- }
-
- }
- }
- }
-
- }
- }
使用方法:
- public function update() {
- $Blog=D('Blog');
- $vo=$Blog->create();
- $this->updateTag($vo,'Blog');
- if (false === $vo) {
- $this->error($Blog->getError());
- }
-
- $list = $Blog->save();
- if (false !== $list) {
-
-
- $this->success('编辑成功!');
- } else {
-
- $this->error('编辑失败!');
- }
- }