先說說自己的需求吧-根據標籤實現相關文章並實現文章索引,現有三表:文章表(id,title...),標籤表(tagid,tag),標籤文章對應關係表(aid ,tagid):在文章發布頁面新增標籤欄位並把一文章多標籤的情況拆分儲存進資料庫。在不使用explode()的情況下,mysql可以用順利獲取到字段信息和添加的數據信息,但是當使用了explode()後就不可以了,字段信息和value一直為空。 Q:可以怎麼實現一文章多標籤以及索引的效果?或者說以下程式碼可以怎麼改善。
<code>$article=I("post.post"); $article['eid']=I("post.eid"); $tags=I("post.tags"); $tags['tag']=explode(",",I("post.tag")); $article['smeta']=json_encode($_POST['smeta']); $article['post_content']=htmlspecialchars_decode($article['post_content']); $result=$this->posts_model->add($article); $result2=$this->tags_model->add($tags); echo $this->tags_model->getLastSql(); dump($tags); if ($result && $result2) { $this->tag_relationships_model->add(array("aid"=>$result,"tagid"=>$result2)); foreach ($_POST['term'] as $mterm_id){ $this->term_relationships_model->add(array("term_id"=>intval($mterm_id),"object_id"=>$result)); } $this->success("添加成功!"); } else { $this->error("添加失败!"); } }</code>