$condition = array($pk=>array('in',explode(',',$id)));//???
$this->model->where($condition)->delete()
//DELETE FROM `user` WHERE `id` IN ('116','115','113')
怎样理解??
$condition = array($pk=>array('in',explode(',',$id)));//???
$this->model->where($condition)->delete()
//DELETE FROM `user` WHERE `id` IN ('116','115','113')
怎样理解??