您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程

ecshop实现用户名或Email都能登陆的修改方法

紫翠2023-12-04 16:28:22ecshop商城教程已有人查阅

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

相信很多使用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,站长没有亲自测试,相信也可以用此方法来解决。

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签