//更新会员状态status
$ary_where = array();
$ary_where[] = ['id', '=', $int_id];
$result = $this->obj_admin->updateData($ary_where, array('status' => $status));
其中,
$this->obj_admin = new Member();
//更新会员状态status
$ary_where = array();
$ary_where[] = ['id', '=', $int_id];
$result = $this->obj_admin->updateData($ary_where, array('status' => $status));
其中,
$this->obj_admin = new Member();