2017 © Pedro Peláez
 

library aliyun-sms

Aliyun SMS SDK for PHP

image

pfinal/aliyun-sms

Aliyun SMS SDK for PHP

  • Thursday, July 27, 2017
  • by pfinal
  • Repository
  • 1 Watchers
  • 5 Stars
  • 420 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 13 % Grown

The README.md

Http

阿里云短信SDK, (*1)

使用composer 安装

composer require pfinal/aliyun-sms

示例

<?php

require_once __DIR__ . '/vendor/autoload.php';

date_default_timezone_set('PRC');

$sms = new \PFinal\Aliyun\AliyunSMS();

$sms->accessKeyId = '你的accessKeyId';
$sms->accessKeySecret = '你的accessKeySecret';
$sms->signName = '你的签名';

$sms->templateId = '验证码模板id';
$sms->templateCodeKey = '模板中验证码对应占位符';

//发验证码
$bool = $sms->sendCode('18688888888', '1234');
var_dump($bool);

//发普通模板短信
$bool = $sms->templateSMS('18688888888','你的模板id',['var1'=>'value1','var2'=>'value2']);
var_dump($bool);

The Versions

27/07 2017

dev-master

9999999-dev http://www.pfinal.cn

Aliyun SMS SDK for PHP

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

sms sdk aliyun

27/07 2017

v1.0.1

1.0.1.0 http://www.pfinal.cn

Aliyun SMS SDK for PHP

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

sms sdk aliyun

27/07 2017

v1.0.0

1.0.0.0 http://www.pfinal.cn

Aliyun SMS SDK for PHP

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

sms sdk aliyun