$value) { $this->$key = $value; } return $this; } /** * 转化为数组 * @return mixed */ public function toArray() { $data = []; foreach ($this as $field => $value) { $data[$field] = $value; } return $data; } }