聯(lián)系官方銷售客服
1835022288
028-61286886
火車頭內(nèi)容采集范例 http://www.zbshanke.com/doc/1084.html 這個(gè)文檔教程里只有新發(fā)布的入庫(kù) $rt = $this->content_model->save_content(0, $save);
當(dāng)驗(yàn)證到重復(fù)時(shí)想要改成更新數(shù)據(jù)應(yīng)該怎么改?
// 驗(yàn)證標(biāo)題重復(fù)
if ($this->content_model->table(SITE_ID.'_'.MOD_DIR)->where('title', $save[1]['title'])->counts()) {
echo '重復(fù)';exit;
}
$abc=$this->content_model->table(SITE_ID.'_'.MOD_DIR)->where('title', $save[1]['title'])->getRow();
然后
$rt = $this->content_model->save_content($abc['id'], $save);