帝国CMS用户注册时验证手机唯一性的方法 - Lin Huiming (Aaron) - 林茄子
lin huiming
因上努力,果上随缘

帝国CMS用户注册时验证手机唯一性的方法

  • Lin Huiming
  • 2分钟阅读 2min read

1、打开打开 e/member/class/member_registerfun.php 文件,加入:

//重复手机
$phone=RepPostStr($add['phone']);
        $num=$empire->gettotal("select count(*) as total from {$dbtbpre}enewsmemberadd where phone='$phone' limit 1");
        if($num)
        {
                printerror('Rephone','',1);
        }

2、打开e/data/language/gb/pub/q_message.php文件,增加'Rephone'=>'此手机已被注册,请换个号码',

该内容有帮助吗?Was this helpful?

评论 Comment

已有0人参与,点击查看更多评论