PHP短信接口分享:适用于创蓝253平台下的短信验证码、短信服务接口

<?php
header("Content-type:text/html; charset=UTF-8");

class ChuanglanSmsApi {

    //发送短信的接口地址
    const API_SEND_URL=‘http://sms.253.com/msg/send?‘;

    //查询余额的接口地址
    const API_BALANCE_QUERY_URL=‘http://sms.253.com/msg/balance?‘;

    const API_ACCOUNT=‘*******‘;//短信账号从 https://zz.253.com/site/login.html 里面获取。

    const API_PASSWORD=‘*******‘;//短信密码从 from https://zz.253.com/site/login.html 里面获取。

    /**
     * 发送短信需要的接口参数
     *
     * @param string $mobile                 手机号码
     * @param string $msg                         想要发送的短信内容
     * @param string $needstatus         是否需要状态报告 ‘1‘为需要 ‘0‘位不需要。
     */
    public function sendSMS( $mobile, $msg, $needstatus = 1) {

            //发送短信的接口参数
            $postArr = array (
                                      ‘un‘ => self::API_ACCOUNT,
                                      ‘pw‘ => self::API_PASSWORD,
                                      ‘msg‘ => $msg,
                                      ‘phone‘ => $mobile,
                                      ‘rd‘ => $needstatus
                 );

            $result = $this->curlPost( self::API_SEND_URL , $postArr);
            return $result;
    }

    /**
     *
     *
     *  查询余额
     */
    public function queryBalance() {

            // 查询接口参数
            $postArr = array (
                      ‘un‘ => self::API_ACCOUNT,
                      ‘pw‘ => self::API_PASSWORD,
            );
            $result = $this->curlPost(self::API_BALANCE_QUERY_URL, $postArr);
            return $result;
    }

    /**
     * 处理接口返回值
     *
     */
    public function execResult($result){
            $result=preg_split("/[,\r\n]/",$result);
            return $result;
    }

    /**
     * @param string $url
     * @param array $postFields
     * @return mixed
     */
    private function curlPost($url,$postFields){
            $postFields = http_build_query($postFields);
            if(function_exists(‘curl_init‘)){

                    $ch = curl_init ();
                    curl_setopt ( $ch, CURLOPT_POST, 1 );
                    curl_setopt ( $ch, CURLOPT_HEADER, 0 );
                    curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
                    curl_setopt ( $ch, CURLOPT_URL, $url );
                    curl_setopt ( $ch, CURLOPT_POSTFIELDS, $postFields );
                    $result = curl_exec ( $ch );
                    if(curl_errno($ch))
                    {
                            return ‘Curl error: ‘ . curl_error($ch);
                    }
                    curl_close ( $ch );
            }elseif(function_exists(‘file_get_contents‘)){

                    $result=file_get_contents($url.$postFields);

            }
            return $result;
    }

    //魔术获取
    public function __get($name){
            return $this->$name;
    }

    //魔术设置
    public function __set($name,$value){
            $this->$name=$value;
    }

}
?>

原文地址:http://blog.51cto.com/13567544/2070235

时间: 2024-10-05 05:34:28

PHP短信接口分享:适用于创蓝253平台下的短信验证码、短信服务接口的相关文章

创蓝253云通讯paas平台Python短信接口demo

#!/usr/local/bin/python#-- coding:utf-8 -- Author: jacky Time: 14-2-22 下午11:48 Desc: 短信http接口的python代码调用示例 import httplibimport urllib #服务地址host = "sms.253.com" #端口号port = 80 #版本号version = "v1.1" #查账户信息的URIbalance_get_uri = "/msg/

PHP调用创蓝253国际短信验证码

#!/usr/local/bin/python#-- coding:utf-8 -- Author: jacky Time: 14-2-22 下午11:48 Desc: 短信http接口的python代码调用示例 import httplibimport urllibimport json#服务地址 host = "intapi.253.com" #端口号port = 80 #版本号version = "v1.1" #查账户信息的URIbalance_get_uri

【PYTHON】创蓝253云通讯平台国际短信API接口DEMO

#!/usr/local/bin/python#-- coding:utf-8 -- Author: jacky Time: 14-2-22 下午11:48 Desc: 短信http接口的python代码调用示例 import httplibimport urllibimport json#服务地址 host = "intapi.253.com" #端口号port = 80 #版本号version = "v1.1" #查账户信息的URIbalance_get_uri

【PHP】创蓝253云通信平台国际短信接口调用demo案例

PHP接口请求类<?phpheader("Content-type:text/html; charset=UTF-8"); / 类名:ChuanglanSmsApi 功能:创蓝接口请求类 详细:构造创蓝短信接口请求,获取远程HTTP数据 版本:1.3 日期:2017-04-12 说明: 以下代码只是为了方便客户测试而提供的样例代码,客户可以根据自己网站的需要,按照技术文档自行编写,并非一定要使用该代码. 该代码仅供学习和研究创蓝接口使用,只是提供一个参考.*/ class Chu

【ASP】创蓝253云通讯paas平台短信验证码接口调用demo

<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%><%Function Post(url,data)dim Https set Https=server.createobject("MSXML2.XMLHTTP")Https.open "POST",url,falseHttps.setRequestHeader "Content-Type","ap

【C(C++)】创蓝253云通讯平台国际短信API接口DEMO

#include <arpa/inet.h>#include <assert.h>#include <errno.h>#include <netinet/in.h>#include <signal.h>#include <stdlib.h>#include <stdio.h>#include <string.h>#include <sys/types.h>#include <sys/socke

创蓝253云通讯平台---短信验证码接口说明

1协议说明 名称 说明 协议 HTTP POST 编码格式 UTF8 Content-Type application/json URL http://xxx/msg/send/json 或者 https://xxx/msg/send/json 完整地址请登录253云通讯自助通平台或者询问您的商务负责人获取 接口说明 此接口一次可提交不超过1000个手机号码. 2 请求包体 包体为json字符串,参数如下: { "account" : "N6000001", //用

【C/C++】如何获取短信验证码---创蓝253短信服务平台

#include <arpa/inet.h>#include <assert.h>#include <errno.h>#include <netinet/in.h>#include <signal.h>#include <stdlib.h>#include <stdio.h>#include <string.h>#include <sys/types.h>#include <sys/socke

创蓝253云通讯国际短信余额查询请求demo

<?phpheader("Content-type:text/html; charset=UTF-8");/ 功能:创蓝查询余额DEMO 版本:1.3 日期:2017-04-12 说明: 以下代码只是为了方便客户测试而提供的样例代码,客户可以根据自己网站的需要,按照技术文档自行编写,并非一定要使用该代码. 该代码仅供学习和研究创蓝接口使用,只是提供一个参考.*/require_once 'ChuanglanSmsApi.php';$clapi = new ChuanglanSms