Home  >  Article  >  Backend Development  >  How to implement mobile phone verification in php

How to implement mobile phone verification in php

藏色散人
藏色散人Original
2020-08-15 10:03:372424browse

php method to implement mobile phone verification: first find the SMS service provider and access the SMS service; then request to send information on the website information submission page; then enable the server to communicate with the SMS service provider and submit for sending Request; finally, the information is sent to the user's mobile phone through the operator.

How to implement mobile phone verification in php

Recommended: "PHP Video Tutorial"

php implements mobile phone SMS verification function

Nowadays, in order to ensure the authenticity of user information when building websites, websites often choose to send verification code information to users’ mobile phones through text messages. Only users who have passed the verification can register, thus ensuring that the user’s contact information is 100% accuracy. Today I will share with you how to implement the SMS verification function in PHP. I hope it will be helpful to you.

How to implement mobile phone verification in php

First, the basic idea of ​​​​implementing the PHP mobile phone SMS verification function

1. Find an SMS service provider and access the SMS service

2. Request to send information on the website information submission page

3. The server communicates with the SMS service provider and submits the sending request

4. The SMS service provider sends the information to In the user’s mobile phone

2. Mobile phone number SMS verification front page effect implementation

How to implement mobile phone verification in php

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script src="js/jquery-1.4a2.min.js" type="text/javascript"></script>
              <script type="text/javascript">
                            /*-------------------------------------------*/
                            var InterValObj; //timer变量,控制时间
                            var count = 60; //间隔函数,1秒执行
                            var curCount;//当前剩余秒数
                            var code = ""; //验证码
                            var codeLength = 6;//验证码长度
                            function sendMessage() {
                                                 curCount = count;
                                                 var dealType; //验证方式
                            tel = $(’#tel’).val();
                  if(tel!=’’){
                       //验证手机有效性
                      var myreg = /^(((13[0-9]{1})|(15[0-9]{1})|(18[0-9]{1}))+\d{8})$/;
            if(!myreg.test($(’#tel’).val()))
          {
             alert(’请输入有效的手机号码!’);
             return false;
          }
                     tel = $(’#tel’).val();
                        //产生验证码
                            for (var i = 0; i < codeLength; i++) {
                                                        code += parseInt(Math.random() * 9).toString();
                                                 }
                                                 //设置button效果,开始计时
                                                        $("#btnSendCode").attr("disabled", "true");
                                                        $("#btnSendCode").val("请在" + curCount + "秒内输入验证码");
                                                        InterValObj = window.setInterval(SetRemainTime, 1000); //启动计时器,1秒执行一次
                            //向后台发送处理数据
                $.ajax({
                    type: "POST", //用POST方式传输
                    dataType: "text", //数据格式:JSON
                    url: ’yanzhengma.php’, //目标地址(根据实际地址)
                    data: "&tel=" + tel + "&code=" + code,
                    error: function (XMLHttpRequest, textStatus, errorThrown) { },
                    success: function (msg){ }
                });
                     }else{
                     alert(’请填写手机号码’);
                      }
           }
                            //timer处理函数
                     function SetRemainTime() {
                                   if (curCount == 0) {                
                                          window.clearInterval(InterValObj);//停止计时器
                                          $("#btnSendCode").removeAttr("disabled");//启用按钮
                                          $("#btnSendCode").val("重新发送验证码");
                                          code = ""; //清除验证码。如果不清除,过时间后,输入收到的验证码依然有效   
                                   }
                                   else {
                                          curCount--;
                                          $("#btnSendCode").val("请在" + curCount + "秒内输入验证码");
                                   }
                            }
    </script>
</head>
<body>
<input name="tel" id=tel type="text" />
        <input id="btnSendCode" type="button" value="发送验证码" onclick="sendMessage()" /></p>
</body>
</html>

3. Call the SMS server SMS interface

The page compiled by the author is yanzhengma.php (specifically based on the information provided by the service provider)

<?php //提交短信
$post_data = array();
$post_data[’userid’] = 短信服务商提供ID;
$post_data[’account’] = ’短信服务商提供用户名’;
$post_data[’password’] = ’短信服务商提供密码’;
// Session保存路径
$sessSavePath = dirname(__FILE__)."/../data/sessions/";
if(is_writeable($sessSavePath) && is_readable($sessSavePath)){
       session_save_path($sessSavePath);
}
session_register(’mobliecode’);
$_SESSION[’mobilecode’] = $_POST["code"];
$content=’短信验证码:’.$_POST["code"].’【短信验证】’;
$post_data[’content’] = mb_convert_encoding($content,’utf-8’, ’gb2312’); //短信内容需要用urlencode编码下
$post_data[’mobile’] = $_POST["tel"];
$post_data[’sendtime’] = ’’; //不定时发送,值为0,定时发送,输入格式YYYYMMDDHHmmss的日期值
$url=’http://IP:8888/sms.aspx?action=send’;
$o=’’;
foreach ($post_data as $k=>$v)
{
  $o.="$k=".$v.’&’;
}
$post_data=substr($o,0,-1);
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
//curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //如果需要将结果直接返回到变量里,那加上这句。
$result = curl_exec($ch);
?>

Fourth: Verify the SMS verification code when submitting the form information

//手机验证码开始
        session_start();
              $svalitel = $_SESSION[’mobilecode’];
              $vdcodetel = empty($vdcodetel) ? ’’ : strtolower(trim($vdcodetel));
       
            if(strtolower($vdcodetel)!=$svalitel || $svalitel==’’)
            {
                ResetVdValue();
                            //echo "Pageviews=".$vdcodetel;
                            ShowMsg("手机验证码错误!", ’-1’);
                exit();
            }

The above is the detailed content of How to implement mobile phone verification in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn