欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

大家哪位高手写过php调用短信接口吗

程序员文章站 2022-04-03 20:08:46
...
大家谁写过php调用短信接口吗?
大家谁写过php调用短信接口吗,有源码最好,有适合的短信接口也推荐一下,要求:24小时发送,随发随到的,做验证码用的.

------解决方案--------------------
核心代码如下:

function rstr($str){
$s=intval(substr($str,0,1));
if($s==1)
$error='代表发送成功';
else{
$b=intval(substr($str,0,2));
switch($b){
case -1:$error='手机号码不正确';break;
case -2:$error='除时间外,所有参数不能为空';break;
case -3:$error='用户名密码不正确';break;
case -4:$error='平台不存在';break;
case -5:$error='客户短信数量为0';break;
case -6:$error='客户账户余额小于要发送的条数';break;
case -7:$error='不能超过70个字';break;
case -8:$error='非法短信内容';break;
case -9:$error='未知系统故障';break;
case -10:$error='网络性错误';break;
default:$error=false;
}
}
return $error;
}

function sendnote($mobtel,$msg){
$string = file_get_contents("http://jiekou.56dxw.com/sms/HttpInterface.aspx?comid=60&username=test1&userpwd=123&handtel=$mobtel&sendcontent=$msg&
sendtime=&smsnumber=0739");
return rstr($string);
}
$msg='内容限制为70个字,';
$msg=mb_convert_encoding($msg, 'gb2312' ,'utf-8');
echo sendnote('手机号',$msg);

56短信接口文档下载地址:

http://www.56dxw.com/Interface/duanxinjiekouxiazai.html

php调用http短信接口源码:http://www.56dxw.com/Interface/202.html

短信接口请参考:http://www.56dxw.com
大家哪位高手写过php调用短信接口吗

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频