AI智能
改变未来

tp5 基础使用DB之单删除与多删除方法


单删除方法

//单删除方法public function delete(){$id=input(\'id\');//获取传递过来的id$i=Db::table(\'student\')->where(\'id\',$id)->delete();if ($i){//返回json数据格式return json([\'code\'=>$i, //$i如果更新成功则为1,反之为空或0.\'msg\'=>\'更新成功\',]);}else{return json([\'code\'=>$i,\'msg\'=>\'更新失败\',]);}}

多删除方法

//多删除方法public function deletes(){$ids=input(\'id/a\');//获取传递过来的数组,这里和直接input获取是不一样的//$ids=explode(\",\", $ids); 如果传过来是一个字符串还需要转成数组$i=Db::table(\'student\')->where(\'id\',\'in\',$ids)->delete();if ($i){//返回json数据格式return json([\'code\'=>$i, //$i如果更新成功则为1,反之为空或0.\'msg\'=>\'更新成功\',]);}else{return json([\'code\'=>$i,\'msg\'=>\'更新失败\',]);}}
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » tp5 基础使用DB之单删除与多删除方法