修改密码
array Core_Member::change_password( string $new_password )
参数列表
参数 类型 描述 默认值 $new_password
string
$new_password
array
失败返回falsepublic function change_password($new_password)
{
$this->password = $this->_get_password_hash($new_password);
return $this->update();
}