在网站建设中的会员注册、登录验证等页面功能中,为了防止机器人注册信息,通常会用到手机短信验证的功能,今天绵阳动力网站建设公司就为大家介绍关于“php利用云片网api接口发送手机短信的实现方法”的内容。
具体代码如下:
/**
* [SendSms description]
* @param [string] $tpl_content [发送的短信内容]
* @param $send_mobile [发送的手机号码]
*/
public function SendSms($tpl_content,$send_mobile)
{
$this->yunpian_appkey = env('yunpian_appkey');//云片账户appkey
$this->yunpian_secret = env('yunpianSecretXYZ');//云片账户secret
//初始化
$ch = curl_init();
$data=array('text'=>$tpl_content,'apikey'=>$this->yunpian_appkey,'mobile'=>$send_mobile);
curl_setopt ($ch, CURLOPT_URL, 'https://sms.yunpian.com/v2/sms/single_send.json');
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
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);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$send_data = curl_exec($ch);
curl_close($ch);
//解析返回结果(json格式字符串)
$backmassage = json_decode($send_data,true);
echo '$backmassage ';
//这里是写在了job里面所以记了个日志可忽略!
Log::info('smsmessagelog: '.$send_data);
return [$backmassage,$send_data];
}以上代码非常简单,如果你还有不懂的可以参考官方的帮助手册。
地址:绵阳市临园路东段78号B座13层
电话:0816-6339181
邮箱:kf@kf51.cn
微信公众号:
Copyright © 绵阳动力网站建设 www.kf51.cn All Rights Reserved 蜀ICP备08100083号
