互億無線 · 文檔中心

彩信/視頻短信 - 代碼示例


PHP對接彩信/視頻短信接口DEMO示例
本文為您提供了PHP語言版本的彩信/視頻短信接口對接DEMO示例

彩信/視頻短信接口文檔 點擊下載

彩信/視頻短信接口接入指南 點擊訪問

//發(fā)送短信測試

//打開php.ini文件中的 always_populate_raw_post_data = -1;
header("Content-type:text/html; charset=UTF-8");

require 'ihuyi/sms.class.php';
$config = require 'ihuyi/config.php';

$sms = new sms($config);

$mobile = array('XXXXXX','XXXXXX');
$content = makecontent();
$title = "測試";
$product_id = 1016;
$sign_name = '您的簽名';

//發(fā)送短信
$res = $sms->send($mobile, $content,$title, $product_id, $sign_name);
$sms->log('send', $res);
print_r($res);

function makecontent()
{
    $data = array(
        //第一幀
        array(
            array(//文本
                'con_type' => 'text',
                'ext_type' => 'txt',
                'data'     => '短信內(nèi)容1'
            ),
            array(//圖片
                'con_type' => 'image',
                'ext_type' => 'jpg',
                'data'     => base64_encode(file_get_contents('yourFileFolder/test-jpg1.jpg'))
            )
        ),
        array(//第二幀
            array(//音頻
                'con_type' => 'audio',
                'ext_type' => 'mp3',
                'data'     => base64_encode(file_get_contents('yourFileFolder/test-mp31.mp3'))
            ),
            array(//文本
                'con_type' => 'text',
                'ext_type' => 'txt',
                'data'     => '第二幀音頻'
            ),
        ),
        array(//第三幀
            array(//視頻
                'con_type' => 'video',
                'ext_type' => 'mp4',
                'data'     => base64_encode(file_get_contents('yourFileFolder/test-mp41.mp4')) 
            )
        )
    );
    return $data;
}

現(xiàn)在注冊,即享新用戶禮包!

在線咨詢
電話咨詢

服務(wù)熱線:

4008 808 898

服務(wù)熱線(工作時間):

4008 808 898

業(yè)務(wù)咨詢(非工作時間):

售后咨詢(非工作時間):

驗證碼已發(fā)送到您的手機(jī),請查收!

輸入驗證碼后,點擊“開通體驗賬戶”按鈕可立即開通體驗賬戶。

收不到短信驗證碼?
互億無線不提供接碼服務(wù),接碼用戶請勿點擊開通按鈕。
×