AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
### isRepeat **检查对象是否重复** **参数** \* @新增检查重复无需传入checkId \* @修改检查重复需要排除修改对象id ~~~ function isRepeat($searchArr, $checkId) { $countsql = "select count(id) as num from " . $this->tbl_name . " c"; $this->isBlankSearch=true; $countsql = $this->createQuery ( $countsql, $searchArr ); if ($checkId != '') { $countsql .= " and c.id!=" . $checkId; } //echo $countsql; $num = $this->queryCount ( $countsql ); // echo $num; return ($num == 0 ? false : true); } ~~~