您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop手机号码邮箱用户名都能登陆的方法
盼山2023-10-21 16:12:35ecshop商城教程已有人查阅
导读ecshop会员可以采取多种方式,例如用户名,邮箱,手机号登录系统。打开includes\modules\integrates\integrate.php文件,大概 36行,找到如下代码:
功能介绍:
ecshop会员可以采取多种方式,例如用户名,邮箱,手机号登录系统。
安装流程:
插件安装:
1.打开includes\modules\integrates\integrate.php文件,大概 36行,找到如下代码:
ecshop会员可以采取多种方式,例如用户名,邮箱,手机号登录系统。
安装流程:
插件安装:
1.打开includes\modules\integrates\integrate.php文件,大概 36行,找到如下代码:
/**
* 用户登录函数
*
* @access public
* @param string $username
* @param string $password
*
* @return void
*/
function login($username, $password, $remember = null)
{
if ($this->check_user($username, $password) > 0)
{
if ($this->need_sync)
{
$this->sync($username,$password);
}
$this->set_session($username);
$this->set_cookie($username, $remember);
return true;
}
else
{
return false;
}
}
用以下红 代码全部替换:
/**
* 用户登录函数
*
* @access public
* @param string $username
* @param string $password
*
* @return void
*/
function login($username, $password, $remember = null)
{
/*新:添加的多种方式登录ecshop*/
if(strrpos($username,”@”))//判断是否为email,采用email登陆
{
$sql = “SELECT user_name”.
” FROM ” . $this->table($this->user_table).
” WHERE ” . $this->field_email . ” = ‘$username’”;
$u = $this->db->getRow($sql);
if($u){
return $this->syncmember($u['user_name'], $password, $remember);
}
}elseif(strlen($username)>=11 && is_numeric($username)){//判断为手机号,采用手机号登录
$sql = “SELECT ” . $this->field_name .
” FROM ” . $this->table($this->user_table).
” WHERE mobile_phone= ‘$username’”;
$u = $this->db->getRow($sql);
if($u){
return $this->syncmember($u['user_name'], $password, $remember);
}
}else{//普通账户登陆
if ($this->check_user($username, $password) > 0){
return $this->syncmember($username, $password, $remember);
}
}
return false;
}
2.完成。
本文标签:
很赞哦! ()
随机图文
-
ecshop首页显示分类精品新品热销特价等商品的实现方法
EcShop首页显示特定分类的精品新品热销特价等推荐商品很多大型的B2C商城都有特定分类专区,该分类下的【分类名称】、【推荐子分类 或 推荐品牌】、【大图片/推荐单品】、【 -
ecshop商品页购买数量可以输入小数的解决方法
大多数的购物网站是不需要输入小数的,像卖衣服的,卖鞋的等等,但是有一些特殊的购物网站,购买数量是应该允许输入小数的,像卖菜的。 -
ecshop错误Redefining already defined constructor for class
本地PHP环境PHP5.4,安装ecshop2.7.3后,很多地方会报如下的错Redefining already defined constructor for class XXX -
ecshop商城与Jquery冲突的解决方案
ECShop把AJAX事件和JSON解析的模块放在common/transport.js之中,可以说它也有自己封装的一套工具,这其实是很正常的。
留言与评论 (共有 条评论) |