💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### deletes **根据主键批量删除表记录,根据所传id字符中","符号个数进行单或多条记录的删除** **参数** $ids: id值 ~~~ function deletes($ids) { if (! mysql_query ( "delete from " . $this->tbl_name . " where id in(" . $ids . ")" )) { throw new Exception ( mysql_error () ); } return true; } ~~~