where($where)->find(); return $result; }//end findReply() /** * 数据修改 * * @access public * @param mixed $data 数据 * @param mixed $where 条件 * @return array 返回类型 */ public function updateReply($where, $data) { $result = $this->where($where)->update($data); return $result; }//end updateReply() }