checked = Helper::array($options); return $this; } /** * 选中所有选项. * * @param string|array $excepts * * @return $this */ public function checkAll($excepts = []) { return $this->check( array_keys(Arr::except($this->options, $excepts)) ); } }