自个儿动手写 PHP acts_as_taggable_on 实现
程序员文章站
2022-05-17 14:19:12
...
自己动手写 PHP acts_as_taggable_on 实现
写道
这个功能不怎么好总结,看了很多PHP相关的资料 感觉都木有讲清楚,ZF和orm的实现又过于臃肿....
只好 参阅rails的acts_as_taggable_on 说白了 核心就一个sql
select post.*,count(tag.id) as count
from post,tag,taging
where post.id!={当前post.id} #排除自身
and post.id=taging.post_id #限定标签的范围为当前post所拥有的标签集合
and taging.tag_type=post.base_class #限定标签类型为当前post的基本类型
and taging.tag_id=tag.id #限定必须是有效的标签
and tag.name in ({当前post拥有的标签})
group by post.id
order by count desc
鄙视 某些人 教程说完一半后面就没了...
简单的东西都复杂话了?
只好 参阅rails的acts_as_taggable_on 说白了 核心就一个sql
select post.*,count(tag.id) as count
from post,tag,taging
where post.id!={当前post.id} #排除自身
and post.id=taging.post_id #限定标签的范围为当前post所拥有的标签集合
and taging.tag_type=post.base_class #限定标签类型为当前post的基本类型
and taging.tag_id=tag.id #限定必须是有效的标签
and tag.name in ({当前post拥有的标签})
group by post.id
order by count desc
鄙视 某些人 教程说完一半后面就没了...
简单的东西都复杂话了?
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
上一篇: php如何将数字转换成汉字
下一篇: php 如何输出csv文档
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论