ThinkPHP添加更新标签的方法
本文实例讲述了thinkphp添加更新标签的方法。分享给大家供大家参考。具体分析如下:
我们知道,thinkphp的拓展案例blog,只告诉我们怎样去添加标签tag,却没有删除和更新标签的方法,我在前面的《》为拓展案例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.具体函数如下:
$recordid= trim($vo['id']);
if($vo['keywords']==''){//如果没有标签,则把原来的标签删除
$this->deltag($recordid);
}else{
$newtags = explode(' ', $vo['keywords']);//获取更新的标签并转为数组(keywords是这里的标签字段,在thinkphp的拓展案例blog为tags,注意)
$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));//返回更新前后tag的差值数
$result2=count(array_diff($oldtags,$newtags));//返回更新前后tag的差值数
if(($result1 !== $result2) || ($result !==0)){//2与原来的完全相同->过滤掉
$array_intersect=array_intersect($oldtags,$newtags);//取得交值
$oldtags_diff=array_diff($oldtags,$array_intersect);//原来的标签,被更新后已无用,需要删除的
$newtags_diff=array_diff($newtags,$array_intersect);//修改的标签,需要添加的
//删除或者count-1
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);//标签数量减1
$tagged->where('tagid='.$tagvo['id'].' and recordid='.$recordid)->delete();//删除tagged中相关数据
}
}
}
//添加更新的标签
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);//count统计加1(这个函数有三个参数,默认加1)
} else {//如果是新添的标签,标签+1
$t = array();
$t["name"] = $v;
$t["count"] = 1;
$t["module"] = $module;
$result = $tag->add($t);
$tagid = $result;
}
}
//记录tag信息
$t = array();
$t["module"] = $module;
$t["recordid"] = $recordid;//保存news的id
$t["tagtime"] = time();
$t["tagid"] = $tagid;//保存tag的id
$tagged->add($t);
}
}
}
}
}
}
使用方法:
$blog=d('blog');
$vo=$blog->create();
$this->updatetag($vo,'blog');//更新前调用
if (false === $vo) {
$this->error($blog->geterror());
}
// 更新数据
$list = $blog->save();
if (false !== $list) {
//print_r($list);
$this->success('编辑成功!');
} else {
//错误提示
$this->error('编辑失败!');
}
}
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
上一篇: netcore 2.2 封装 AutoMapper
下一篇: 阿里云优惠券领取
推荐阅读
-
Win10系统如何添加本地账户?Win10添加本地账户的方法
-
万兴神剪手如何添加字幕?万兴神剪手中添加字幕的方法
-
C#中DataGridView动态添加行及添加列的方法
-
mssql sqlserver 表增加列后,视图不会自动更新相关列的两种解决方法分享
-
linux下采用shell脚本实现批量为指定文件夹下图片添加水印的方法
-
pygame游戏之旅 按钮上添加文字的方法
-
bootstrap动态添加面包屑(breadcrumb)及其响应事件的方法
-
iOS应用开发中UIView添加边框颜色及设置圆角边框的方法
-
checkbox实现全选的多种方法 不断更新 原创
-
steam更新失败怎么办?解决steam更新失败的方法