让ecshop用户名和email都可以登陆! 在最近的几次开发案例中, 客户经常提到使自己的网站能够用email登陆.
function login($username, $password) { if ($this->check_user($username, $password) > 0) { if ($this->need_sync) { $this->sync($username,$password); } $this->set_session($username); $this->set_cookie($username);
return true; } else { return false; } }
改为:
function login($username, $password) { if(is_email($username)) { if ($this->need_sync) { $this->sync($username,$password); } $this->set_session($username); $this->set_cookie($username);
return true; } else { return false; } }
是否有其他改动方法:有,但经过几次试验,这种方法目前是最平滑的. (责任编辑:好模板) |