短信宝使用示例

protected static function smsbao($mobile,$code){
  $smsapi = "http://api.smsbao.com/";
  $user = ""; //短信平台帐号
  $pass = md5(""); //短信平台密码
  $content="【】你的短信验证码是".$code;//要发送的短信内容
  $phone = $mobile;//要发送短信的手机号码
  $sendurl = $smsapi."sms?u=".$user."&p=".$pass."&m=".$phone."&c=".urlencode($content);
  $result =file_get_contents($sendurl) ;
  return $result;
  $statusStr = array(
        "0" => "短信发送成功",
        "-1" => "参数不全",
        "-2" => "服务器空间不支持,请确认支持curl或者fsocket,联系您的空间商解决或者更换空间!",
        "30" => "密码错误",
        "40" => "账号不存在",
        "41" => "余额不足",
        "42" => "帐户已过期",
        "43" => "IP地址限制",
        "50" => "内容含有敏感词"
    );
}
posted @ 2020-10-03 16:16  bufeetu  阅读(233)  评论(0编辑  收藏  举报
返回顶端