实现【云片网】获取短信验证码


用【云片网】为案例

原生php

<?php

header("Content-Type:text/html;charset=utf-8");

$apikey = ""; //修改为您的apikey(https://www.yunpian.com)登录官网后获取

$code=rand(1000,9999);//生成一个随机数

$mobile = ""; //填写接受验证码的手机号代替

$text="【xxx】您的验证码是$code";//xxx为云片网的签名

$ch = curl_init();

/* 设置验证方式 */

curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept:text/plain;charset=utf-8',

    'Content-Type:application/x-www-form-urlencoded', 'charset=utf-8'));

/* 设置返回结果为流 */

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

/* 设置超时时间*/

curl_setopt($ch, CURLOPT_TIMEOUT, 10);

/* 设置通信方式 */

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

// 取得用户信息

$json_data = get_user($ch,$apikey);

$array = json_decode($json_data,true);

echo '<pre>';print_r($array);

// 发送短信

$data=array('text'=>$text,'apikey'=>$apikey,'mobile'=>$mobile);

$json_data = send($ch,$data);

$array = json_decode($json_data,true);

echo '<pre>';print_r($array);

// // 发送模板短信

// // 需要对value进行编码

// $data = array('tpl_id' => '1', 'tpl_value' => ('#code#').

//    '='.urlencode('1234').

//    '&'.urlencode('#company#').

//    '='.urlencode('欢乐行'), 'apikey' => $apikey, 'mobile' => $mobile);

// print_r ($data);

// $json_data = tpl_send($ch,$data);

// $array = json_decode($json_data,true);

// echo '<pre>';print_r($array);

// // 发送语音验证码

// $data=array('code'=>'9876','apikey'=>$apikey,'mobile'=>$mobile);

// $json_data =voice_send($ch,$data);

// $array = json_decode($json_data,true);

// echo '<pre>';print_r($array);

// // 发送语音通知,务必要报备好模板

// /*

// 模板: 课程#name#在#time#开始。 最终发送结果: 课程深度学习在14:00开始

//  */

//  $tpl_id = '123456';//你自己后台报备的模板id

//  $tpl_value = urlencode('name=深度学习&time=14:00');

//  $data = array('tpl_id'=>$tpl_id,'tpl_value'=>$tpl_value,'apikey'=>$apikey,'mobile'=>$mobile);

//  $json_data = notify_send($ch,$data);

//  $array = json_decode($json_data,true);

//  print_r($array);

curl_close($ch);

/************************************************************************************/

//获得账户

function get_user($ch,$apikey){

    curl_setopt ($ch, CURLOPT_URL, 'https://sms.yunpian.com/v2/user/get.json');

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array('apikey' => $apikey)));

    $result = curl_exec($ch);

    $error = curl_error($ch);

    checkErr($result,$error);

    return $result;

}

function send($ch,$data){

    curl_setopt ($ch, CURLOPT_URL, 'https://sms.yunpian.com/v2/sms/single_send.json');

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));

    $result = curl_exec($ch);

    $error = curl_error($ch);

    checkErr($result,$error);

    return $result;

}

function tpl_send($ch,$data){

    curl_setopt ($ch, CURLOPT_URL,

        'https://sms.yunpian.com/v2/sms/tpl_single_send.json');

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));

    $result = curl_exec($ch);

    $error = curl_error($ch);

    checkErr($result,$error);

    return $result;

}

function voice_send($ch,$data){

    curl_setopt ($ch, CURLOPT_URL, 'http://voice.yunpian.com/v2/voice/send.json');

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));

    $result = curl_exec($ch);

    $error = curl_error($ch);

    checkErr($result,$error);

    return $result;

}

function notify_send($ch,$data){

    curl_setopt ($ch, CURLOPT_URL, 'https://voice.yunpian.com/v2/voice/tpl_notify.json');

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));

    $result = curl_exec($ch);

    $error = curl_error($ch);

    checkErr($result,$error);

    return $result;

}

function checkErr($result,$error) {

    if($result === false)

    {

        echo 'Curl error: ' . $error;

    }

    else

    {

        //echo '操作完成没有任何错误';

    }

}

?>

使用thinkphp5框架

前台页面


<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>Document</title>

    <script type="text/javascript" src="__STATIC__/js/jquery-3.3.1.min.js"></script>

</head>

<body>

    <form method ="post" action="{:url('reg')}">

        手机:<input type="text" name="mobile" id="mobile" required>

        <input type="button" value="发送验证码" id="sendbtn">

        <input type="text" name="code" id="code">

        <input type="submit" value="注册">

    </form>


    <script type="text/javascript">

        $(document).ready(function(){

          $("#sendbtn").click(function(){

            var mobile=$("#mobile").val();

        $.get("{:url('sendmessage')}", { mobile:mobile },

  function(data){

    alert("Data Loaded: " + data);

  });

  });

});

        </script>

</body>

</html>

控制台

<?php

namespace app\index\controller;

use think\Controller;

use think\Db;

class Index extends Controller

{

    public function index()

    {

        return $this->fetch();

    }

    public function reg()

    {

      $code=input('code');

      if($code!=$_COOKIE["code"])

        $this->error('手机验证码错误');

        else{

            $this->success('注册成功');

        }

    }

//短信

    public function sendmessage($mobile)

    {

        header("Content-Type:text/html;charset=utf-8");

        // $apikey = "xxx"; //修改为您的apikey(https://www.yunpian.com)登录官网后获取


        $code=rand(1000,9999);

        // $mobile = "15278310544"; //请用自己的手机号代替

        setcookie("code",$code);

        $text="【云片网】您的验证码是$code";

        $ch = curl_init();


        /* 设置验证方式 */

        curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept:text/plain;charset=utf-8',

            'Content-Type:application/x-www-form-urlencoded', 'charset=utf-8'));

        /* 设置返回结果为流 */

        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);


        /* 设置超时时间*/

        curl_setopt($ch, CURLOPT_TIMEOUT, 10);


        /* 设置通信方式 */

        curl_setopt($ch, CURLOPT_POST, 1);

        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);


        // 取得用户信息

        $json_data = get_user($ch,$apikey);

        $array = json_decode($json_data,true);

        // echo '<pre>';print_r($array);


        // 发送短信

        $data=array('text'=>$text,'apikey'=>$apikey,'mobile'=>$mobile);

        $json_data = send($ch,$data);

        $array = json_decode($json_data,true);

        echo $array['msg'];

         curl_close($ch);

    }

 }


在common.php添加公共代码

// 应用公共文件

//获得账户

function get_user($ch,$apikey){

    curl_setopt ($ch, CURLOPT_URL, 'https://sms.yunpian.com/v2/user/get.json');

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array('apikey' => $apikey)));

    $result = curl_exec($ch);

    $error = curl_error($ch);

    checkErr($result,$error);

    return $result;

}

function send($ch,$data){

    curl_setopt ($ch, CURLOPT_URL, 'https://sms.yunpian.com/v2/sms/single_send.json');

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));

    $result = curl_exec($ch);

    $error = curl_error($ch);

    checkErr($result,$error);

    return $result;

}

function tpl_send($ch,$data){

    curl_setopt ($ch, CURLOPT_URL,

        'https://sms.yunpian.com/v2/sms/tpl_single_send.json');

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));

    $result = curl_exec($ch);

    $error = curl_error($ch);

    checkErr($result,$error);

    return $result;

}

function voice_send($ch,$data){

    curl_setopt ($ch, CURLOPT_URL, 'http://voice.yunpian.com/v2/voice/send.json');

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));

    $result = curl_exec($ch);

    $error = curl_error($ch);

    checkErr($result,$error);

    return $result;

}

function notify_send($ch,$data){

    curl_setopt ($ch, CURLOPT_URL, 'https://voice.yunpian.com/v2/voice/tpl_notify.json');

    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));

    $result = curl_exec($ch);

    $error = curl_error($ch);

    checkErr($result,$error);

    return $result;

}

function checkErr($result,$error) {

    if($result === false)

    {

        echo 'Curl error: ' . $error;

    }

    else

    {

        //echo '操作完成没有任何错误';

    }

}

注:前端页面应用jQuery传参,通过 setcookie("code",$code)保存随机码

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,014评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,796评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,484评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,830评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,946评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,114评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,182评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,927评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,369评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,678评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,832评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,533评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,166评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,885评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,128评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,659评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,738评论 2 351