Пример #1
0
 /**
  * 更新用户信息
  * @param integer $uid
  * @param array $row
  * @return boolean
  */
 public function updateUserInfo($uid, $row)
 {
     $table = $this->table;
     $where = "WHERE uid={$uid}";
     $result = parent::updateInfoByKey($table, $where, $row);
     return $result;
 }