1、ThinkPHP 通過explode分割一個字段內(nèi)容【如:張三,李四、王二、麻子】2、把分割后的內(nèi)容逐個寫入Tab表中去3、如果Tab表中不存在寫入的關(guān)鍵字如:張三、李四……,那么就新增4、如果存在:張三或李四關(guān)鍵字,就在Tab中的計數(shù)字段中 + 1
1 回答

慕虎7371278
TA貢獻1802條經(jīng)驗 獲得超4個贊
$tag=str_replace(",",",",I("post.tag"));
$tag=explode(",", $tag);
if(count($tag)>0){
foreach($tag as $v){
if(M("tag")->where(array('tab_name'=>$v))->find()){
M("tag")->where(array('tab_name'=>$v))->setInc("tab_count",1);
}else{
M("tag")->add(array('tab_name'=>$v,'tab_count'=>1));
}
1
2
}
}
- 1 回答
- 0 關(guān)注
- 1190 瀏覽
添加回答
舉報
0/150
提交
取消