关于Ecshop二次改造实现用户名或Email都能登陆

2016-09-11 20:39 来源:www.chinab4c.com 作者:ecshop专家

相信很多使用的朋友都想要这个功能,网上也有很多类似的修改教程。
下面说一下我的方法,也比较简单,已在ECSHOP2.7.2版测试通过。

 打开 /includes/modules/integrates/integrate.php 文件。

找到

if ($this->check_user($username, $password) > 0)

在它上面添加下面代码段
if(is_email($username))
        {
                $sql = "select ".$this->field_name." from ".$this->table($this->user_table)." where ".$this->field_email."='".$username."'";
                $username = $this->db->getOne($sql);
                if(!$username) return false;
        }


是不是挺简单的。
其他版本的ECSHOP,站长没有亲自测试,相信也可以用此方法来解决。