www.jsxckj.com:短信、物联网、自媒体代运营、小程序开发、MG动画,文创、家纺、生鲜类产品 全国服务热线:400-850-0513

PHP网站短信接口函数示例

By 迅辰信息科技 |

php调用sms9短信接口的函数:

function sendsms($mobile,$content)
{
 $user_id = ''; // sms9平台用户id
 $pass = ''; // 用户密码
 $channelid = ''; // 发送频道id
 
 if(!$mobile || !$content || !$user_id || !$pass || !$channelid) return false;
 
 if(is_array($mobile)) $mobile = implode(",",$mobile);
 
 /*  utf8需要转码
 $content = iconv("utf-8","gbk//ignore",$content);
 **/
 $content = urlencode($content);
 
 $api = "http://admin.sms9.net/houtai/sms.php?cpid={$user_id}&password={$pass}&channelid={$channelid}&tele={$mobile}&msg={$content}";
 $res = file_get_contents($api);
 return strpos($res,'success') === false ? $res : true;
}
使用方法:sendsms("手机号码","发送内容"); 多个手机号码可以用,连接,或者传入数组。

联系我们

迅辰科技为您的每一条短信验证码负责

QQ咨询