trim($username), ]; return $this->where($where)->find(); } /** * 根据主键id更新数据表中的数据 * @param $id * @param $data * @return bool */ public function updateById($id, $data) { $id = (int)$id; if (empty($id) || empty($data) || !is_array($data)) { return false; } $where = [ 'id' => $id, ]; return $this->where($where)->save($data); } }