phpCMS v9使用Email登陆的修改方法
在phpCMS v9系统中,如何让用户可以用email登录后台呢?参考本文介绍的方法,可以轻松实现这个功能。共分为二个步骤完成。
第一步:修改登陆的验证JS
修改 statics/js/formvalidatorregex.js找到
<span style="font-size: 13px; font-family: 'courier new', courier;">ps_username:"^[\\u4E00-\\u9FA5\\uF900-\\uFA2D_\\w]+$"
</span>
修改为:
<span style="font-size: 13px; font-family: 'courier new', courier;">ps_username:"^[\\u4E00-\\u9FA5\\uF900-\\uFA2D_\\w@\.]+$"
</span>
第二步:修改登录文件
修改 phpcms/modules/member/index.php
1,找到
<span style="font-size: 13px; font-family: 'courier new', courier;">$synloginstr = ''; //同步登陆js代码
</span>
在下面添加:
<span style="font-size: 13px; font-family: 'courier new', courier;">preg_match('/^[a-z]+\w*@\w+\.[a-z0-9]{2,6}$/i', $username, $is_email);
</span>
2,找到下面的
<span style="font-size: 13px; font-family: 'courier new', courier;">$status = $this->client->ps_member_login($username, $password);
</span>
修改为:
<span style="font-size: 13px; font-family: 'courier new', courier;">$status = $this->client->ps_member_login($username, $password, $is_email);
</span>
3,找到下面的
<span style="font-size: 13px; font-family: 'courier new', courier;">$r = $this->db->get_one(array('username'=>$username));
</span>
修改为:
<span style="font-size: 13px; font-family: 'courier new', courier;">$r = $this->db->get_one(array($is_email ? 'email' : 'username'=>$username));
</span>
如此之后,便可以用Email能登陆了。快动手实践下吧。
相关文章
- DNF单机版真100级真女鬼剑风法全职业三觉 Win7亲测可玩 (内含教程GM工具 需要虚拟机)
- 网络游戏 决战掉率列表
- 决战游戏地图坐标
- 决战数据库0nlineshop表NPC卖东西的
- 决战GameUser数据表详解说明 DROIYAN ONLINE
- 决战DROIYAN ONLINE 7.0版本怪物列表
- 决战DROIYAN ONLINE如何16进制刷刷教程
- 传奇教程 GOM引擎RMB地图脚本,传奇私服一条龙设置RMB点进入地图的方法 传奇脚本
- 传奇教程 GOM引擎转生地图脚本,传奇开区时添加需要转生进入地图的命令 传奇脚本
- 传奇教程 GOM引擎九零土豪脚本,传奇一条龙开区时添加VIP称号地图命令 传奇脚本