亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区
Chinaunix
標題:
自己動手寫 PHP acts_as_taggable_on 實現(xiàn)
[打印本頁]
作者:
feiyang10086
時間:
2012-03-11 18:26
標題:
自己動手寫 PHP acts_as_taggable_on 實現(xiàn)
自己動手寫 PHP acts_as_taggable_on 實現(xiàn)
寫道
這個功能不怎么好總結,看了很多PHP相關的資料 感覺都木有講清楚,ZF和orm的實現(xiàn)又過于臃腫....
只好 參閱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
鄙視 某些人 教程說完一半后面就沒了...
簡單的東西都復雜話了
作者:
如果有一天21
時間:
2012-03-11 21:16
謝謝分享
歡迎光臨 Chinaunix (http://72891.cn/)
Powered by Discuz! X3.2