当前位置:首页 > PHP教程 > php应用 > 列表

php利用云片网实现短信验证码功能的示例代码

发布:smiling 来源: PHP粉丝网  添加日期:2018-06-06 09:44:49 浏览: 评论:0 

本文将以php举例,介绍网页短信验证码功能的实现。

在众多的第三方短信服务商中我选择了云片网这个短信服务商,本文也将尽可能利用最简单的方式去帮助广大开发者解决短信验证码功能模块的实现。

再次之前我也参考了大部分网上的博客等,大多数都是把云片网的demo原封不动搬上去,对于我这个前端人员来说,根本毫无头绪,故此我将细致的讲解如何操作,以及献上我的源码。

我的业务流程就是通过点击发送验证码这个按钮,触发一个ajax请求事件,将手机号发送到后台,后台生成验证码发送到手机端,并返回这个验证码给前台进行验证码的验证。

请求的php后端代码如下post.php:

  1. <?php 
  2. header("Content-Type:text/html;charset=utf-8"); 
  3. $apikey = "xxxxxxxxxxxxxxx"//修改为您的apikey(https://www.yunpian.com)登录官网后获取 
  4. $mobile =$_POST['mobile']; //获取传入的手机号 
  5. // $mobile = "xxxxxxxxxxx"; //请用自己的手机号代替 
  6. $num = rand(1000,9999);   //随机产生四位数字的验证码 
  7. setcookie('shopCode',$num); 
  8. $text="【蒙羊羊】您的验证码是".$num."。"
  9. $ch = curl_init(); 
  10.  
  11. /* 设置验证方式 */ 
  12. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept:text/plain;charset=utf-8'
  13. 'Content-Type:application/x-www-form-urlencoded''charset=utf-8')); 
  14. /* 设置返回结果为流 */ 
  15. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
  16.  
  17. /* 设置超时时间*/ 
  18. curl_setopt($ch, CURLOPT_TIMEOUT, 10); 
  19.  
  20. /* 设置通信方式 */ 
  21. curl_setopt($ch, CURLOPT_POST, 1); 
  22. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 
  23.  
  24. // 取得用户信息 
  25. $json_data = get_user($ch,$apikey); 
  26. $array = json_decode($json_data,true); 
  27. // echo '<pre>';print_r($array); 
  28.  
  29. // 发送短信 
  30. $data=array('text'=>$text,'apikey'=>$apikey,'mobile'=>$mobile); 
  31. $json_data = send($ch,$data); 
  32. $array = json_decode($json_data,true); 
  33. // echo '<pre>';print_r($array); 
  34.  
  35. // 发送模板短信 
  36. // 需要对value进行编码 
  37. $data = array('tpl_id' => '1''tpl_value' => ('#code#'). 
  38. '='.urlencode($num). 
  39. '&'.urlencode('#company#'). 
  40. '='.urlencode('蒙羊羊'), 'apikey' => $apikey'mobile' => $mobile); 
  41. // print_r ($data); 
  42. $json_data = tpl_send($ch,$data); 
  43. $array = json_decode($json_data,true); 
  44.  
  45.  
  46. echo $num
  47.  
  48.  
  49. // 发送语音验证码 
  50. // $data=array('code'=>$num,'apikey'=>$apikey,'mobile'=>$mobile); 
  51. // $json_data =voice_send($ch,$data); 
  52. // $array = json_decode($json_data,true); 
  53. // echo $num; 
  54.  
  55. // 发送语音通知,务必要报备好模板 
  56. /*  
  57. 模板: 课程#name#在#time#开始。 最终发送结果: 课程深度学习在14:00开始 
  58.  */ 
  59.  
  60. $tpl_id = 'xxxxxxx'//修改为你自己后台报备的模板id 
  61. $tpl_value = urlencode('#time#').'='.urlencode($num).'&'.urlencode('#name#').'='.urlencode('蒙羊羊'); 
  62. $data=array('tpl_id'=>$tpl_id,'tpl_value'=>$tpl_value,'apikey'=>$apikey,'mobile'=>$mobile); 
  63. $json_data = notify_send($ch,$data); 
  64. $array = json_decode($json_data,true); 
  65. // echo $num; 
  66.  
  67.  
  68. curl_close($ch); 
  69.  
  70. /************************************************************************************/ 
  71. //获得账户 
  72. function get_user($ch,$apikey){ 
  73. curl_setopt ($ch, CURLOPT_URL, 'https://sms.yunpian.com/v2/user/get.json'); 
  74. curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array('apikey' => $apikey))); 
  75. $result = curl_exec($ch); 
  76. $error = curl_error($ch); 
  77. checkErr($result,$error); 
  78. return $result
  79. function send($ch,$data){ 
  80. curl_setopt ($ch, CURLOPT_URL, 'https://sms.yunpian.com/v2/sms/single_send.json'); 
  81. curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); 
  82. $result = curl_exec($ch); 
  83. $error = curl_error($ch); 
  84. checkErr($result,$error); 
  85. return $result
  86. function tpl_send($ch,$data){ 
  87. curl_setopt ($ch, CURLOPT_URL,  
  88. 'https://sms.yunpian.com/v2/sms/tpl_single_send.json'); 
  89. curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); 
  90. $result = curl_exec($ch); 
  91. $error = curl_error($ch); 
  92. checkErr($result,$error); 
  93. return $result
  94. function voice_send($ch,$data){ 
  95. curl_setopt ($ch, CURLOPT_URL, 'http://voice.yunpian.com/v2/voice/send.json'); 
  96. curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); 
  97. $result = curl_exec($ch); 
  98. $error = curl_error($ch); 
  99. checkErr($result,$error); 
  100. return $result
  101. function notify_send($ch,$data){ 
  102. curl_setopt ($ch, CURLOPT_URL, 'https://voice.yunpian.com/v2/voice/tpl_notify.json'); 
  103. curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); 
  104. $result = curl_exec($ch); 
  105. $error = curl_error($ch); 
  106. checkErr($result,$error); 
  107. return $result
  108.  
  109. function checkErr($result,$error) { 
  110. if($result === false) 
  111. echo 'Curl error: ' . $error
  112. //phpfensi.com 
  113. else 
  114. //echo '操作完成没有任何错误'; 
  115.  
  116. ?> 

这个php后台是我在官方提供的demo上进行修改的,删除了语音验证这个功能,只保留了短信验证,并将返回给前端的数据只保留了四位数字的验证码,方便前端进行验证码的验证。

官方原demo连接如下···链接

index.html

如下代码是进行点击并发送ajax请求,将请求的验证码并保存到localStorage中

  1. $.ajax({  
  2.   type: "post",  
  3.   url: "post.php"//后台代码文件名  
  4.   data: { 
  5.   mobile:$('#phone').val()//获取输入的手机号 
  6.   },  
  7.   // dataType: "json",  
  8.   success:function(data){  
  9.   console.log(data); 
  10.   layer.msg('验证码发送成功,请注意查收!'); 
  11.   localStorage.setItem('code', JSON.stringify(data)) 
  12.   },  
  13.   error:function(err){  
  14.   console.log(err);  
  15.   }  
  16. });  

进行验证码验证:

  1. var code = JSON.parse(localStorage.getItem('code')) 
  2. if($('#code').val() != code ){ 
  3.   layer.msg('验证码输入错误'); 
  4.   return false; 
  5.  } 

Tags: 云片 示例 代码

分享到: