火车头内容采集范例 https://www.xunruicms.com/doc/1084.html 这个文档教程里只有新发布的入库 $rt = $this->content_model->save_content(0, $save);
当验证到重复时想要改成更新数据应该怎么改?
// 验证标题重复
if ($this->content_model->table(SITE_ID.'_'.MOD_DIR)->where('title', $save[1]['title'])->counts()) {
echo '重复';exit;
}