$id ]) OR show_json(0 , '失败'); show_json(1 , '成功'); } /** * Comment: 修改状态 * Author: zzw * Date: 2019/9/18 15:56 */ public function changeStatus (){ global $_W , $_GPC; #1、获取参数信息 $id = $_GPC['id'] OR Commons::sRenderError('缺少参数:导航id'); $status = $_GPC['status'] ? : 0; #1、修改操作 $res = pdo_update(PDO_NAME."banner",['enabled'=>$status],['id'=>$id]); if($res) Commons::sRenderSuccess('修改成功'); else Commons::sRenderError('修改失败,请刷新重试!'); } }