Home Backend Development PHP Tutorial SMS API Interface Guide in PHP

SMS API Interface Guide in PHP

May 21, 2023 am 08:24 AM
php interface SMS API

With the rapid development of the Internet and mobile communications, text messaging has become an indispensable part of people's lives and work. Various SMS API interfaces have also emerged, making it easier for developers to quickly integrate SMS sending functions into applications. As a popular server-side programming language, PHP also has a rich SMS API interface for developers to use. This article will introduce you to the SMS API interface guide in PHP, hoping to be helpful to your learning and development.

1. Alibaba Dayu SMS Interface

Alibaba Dayu is a mobile developer service platform under Alibaba, which provides a wealth of mobile development services and tools, including SMS interfaces. Alibaba Dayu SMS interface supports domestic and international SMS sending, SMS template management and other functions. Developers can use the PHP SDK to quickly integrate SMS sending functions through APIs.

Using the Alibaba Dayu SMS interface requires the following steps:

  1. Register an Alibaba Dayu account and create an application.
  2. Developers can download the PHP SDK from the Alibaba Dayu official website, and after unzipping, copy the four files TopClient.php, ResultSet.php, RequestCheckUtil.php and RequestCheckUtil.php in the SDK directory to the project directory.
  3. Write PHP code to call the interface. The sample code is as follows:
require_once 'TopClient.php';
require_once 'ResultSet.php';
require_once 'RequestCheckUtil.php';
require_once 'RequestCheckUtil.php';

// 创建一个TopClient实例
$c = new TopClient;
$c->appkey = '您的appkey';
$c->secretKey = '您的secretKey';
$c->format = 'json';

$req = new AlibabaAliqinFcSmsNumSendRequest;
$req->setExtend("");
$req->setSmsType("normal");
$req->setSmsFreeSignName("阿里大鱼");
$req->setSmsParam('{ "name":"用户" }');
$req->setRecNum("13000000000");
$req->setSmsTemplateCode("SMS_5943521");

$resp = $c->execute($req);
Copy after login

The above code creates a TopClient instance through the SDK, and then sets parameters such as appkey, secretKey, and format. AlibabaAliqinFcSmsNumSendRequest is an SMS interface request class. Use the set method to set request parameters, such as SMS signature, SMS parameters, mobile phone number, SMS template number, etc. Finally, use the execute method to send the SMS request, and the returned result contains information such as the SMS sending status.

2. Yunzhixun SMS Interface

Yunzhixun SMS interface is an SMS sending service provided by Shenzhen Yunzhixun Information Technology Co., Ltd. It supports SMS verification codes and marketing SMS. and various types of text messages such as voice verification codes are sent. Yunzhixun SMS interface uses mobile phone numbers as user verification methods and supports domestic and overseas SMS sending. Developers can use PHP SDK to quickly call interfaces through API.

Using the Yunzhixun SMS interface requires the following steps:

  1. Register a Yunzhixun account and create an application.
  2. Developers can download the PHP SDK from the Yunzhixun official website, and after unzipping, copy the SendTemplateSMS.php file in the SDK directory to the project directory.
  3. Write PHP code to call the interface. The sample code is as follows:
<?php
require_once 'SendTemplateSMS.php';
//主帐号
$accountSid= '您的主帐号';
//主帐号Token
$accountToken= '您的主账号Token';
//应用Id
$appId='您的应用ID';
//请求地址,格式如下,不需要写https://
$serverIP='app.cloopen.com';
//请求端口 
$serverPort='8883';
//REST版本号
$softVersion='2013-12-26';

$rest = new REST($serverIP,$serverPort,$softVersion);
$rest->setAccount($accountSid,$accountToken);
$rest->setAppId($appId);

$mobile = '13000000000';
$templateId = '1';
$param = '123456';

$result = $rest->sendTemplateSMS($mobile,array($param),$templateId);
if($result == NULL ) {
    echo "result error!";
    exit;
}
if($result->statusCode!=0) {
    echo "error code :" . $result->statusCode . "<br>";
    echo "error msg :" . $result->statusMsg . "<br>";
} else {
    echo "Sendind TemplateSMS success!<br/>";
    // 获取返回信息
    $smsmessage = $result->TemplateSMS;
    echo "dateCreated:".$smsmessage->dateCreated."<br/>";
    echo "smsMessageSid:".$smsmessage->smsMessageSid."<br/>";
}
?>
Copy after login

The above code creates a REST instance, and then sets the account, application ID, SMS template parameters and other information. Finally, use the sendTemplateSMS method to send an SMS request, and the returned result includes information such as the SMS sending status.

3. Ronglian Cloud Communication SMS Interface

Ronglian Cloud Communication SMS Interface is an SMS sending service provided by Beijing Ronglian Century Information Technology Co., Ltd., supporting verification codes and notification SMS. and marketing text messages and other types of text messages sent. Ronglian Cloud Communication SMS interface uses SMS templates as a way to send personalized SMS messages, and dynamic parameters can be set. Developers can use PHP SDK to quickly call interfaces through API.

Using the Ronglian Cloud Communication SMS interface requires the following steps:

  1. Register a Ronglian Cloud Communication account and create an application.
  2. Developers can download the PHP SDK from the official website of Ronglian Cloud Communications, and after decompression, copy the SendTemplateSMS.php and CCPRestSmsSDK.php files in the SDK directory to the project directory.
  3. Write PHP code to call the interface. The sample code is as follows:
<?php
//主帐号
$accountSid= '您的主帐号';
//主帐号Token
$accountToken= '您的主账号Token';
//应用Id
$appId='您的应用ID';
//请求地址,格式如下,不需要写https://
$serverIP='app.cloopen.com';
//请求端口 
$serverPort='8883';
//REST版本号
$softVersion='2013-12-26';

require_once 'SendTemplateSMS.php';
$rest = new CCPRestSmsSDK($serverIP,$serverPort,$softVersion);
$rest->setAccount($accountSid,$accountToken);
$rest->setAppId($appId);

$to = "13000000000";
$templateId = "1";
$datas = array("123456","5");
$result = $rest->sendTemplateSMS($to,$datas,$templateId);

if($result == NULL ) {
    echo "result error!";
    exit;
}
if($result->statusCode!=0) {
    echo "error code :" . $result->statusCode . "<br>";
    echo "error msg :" . $result->statusMsg . "<br>";
} else {
    echo "Sendind TemplateSMS success!<br/>";
    // 获取返回信息
    $datas = $result->TemplateSMS;
    foreach($datas as $key=>$value) {
        echo "$key:$value<br/>";
    }
}
?>
Copy after login

The above code creates a CCPRestSmsSDK instance and sets the account, application ID, SMS template parameters and other information. Finally, use the sendTemplateSMS method to send an SMS request, and the returned result includes information such as the SMS sending status.

4. Summary

This article introduces three commonly used SMS API interfaces in PHP, including Alibaba Dayu SMS interface, Yunzhixun SMS interface and Ronglian Cloud Communication SMS interface. These interfaces provide rich functions and flexible calling methods to meet different application scenarios and needs. Developers can choose the corresponding interface according to specific needs, or develop their own SMS sending function based on the API documentation. I hope this article will be helpful for PHP developers to learn and use the SMS API interface.

The above is the detailed content of SMS API Interface Guide in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

See all articles