PHP code example of siam-yon / sms

1. Go to this page and download the library: Download siam-yon/sms library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

siam-yon / sms example snippets




use Siam\Sms\AliSms;
use Siam\Sms\TencentSms;

class Demo
{
	function aliSend()
	{
		$key = '你的阿里云密钥标识';
		$secret = '你的阿里云密钥密码';
		$sign = '你的阿里云短信签名';
		$template = '你的阿里云短信模板';
		// 可发送多个手机号,变量为数组即可,如:[11111111111, 22222222222]
		$mobile = 11111111111;
		// 阿里云模板变量为键值对数组
		$params = ['code' => rand(1000, 9999)];
		$sms = new AliSms($key, $secret);
		// 需要注意,设置配置不分先后顺序,send后也不会清空配置
		$result = $sms->setMobile($mobile)->setTemplate($template)->setSign($sign)->setParams($params)->send();
		/**
		 * 返回值为bool,你可获得阿里云响应做出你业务内的处理
		 *
		 * status bool 此变量是此包用来判断是否发送成功
		 * code string 阿里云短信响应代码
		 * message string 阿里云短信响应信息
		 */
		if (!$result) {
			$response = $sms->getResponse();
			// 做出处理
		}
	}
	
	function tencentSend()
	{
		$key = '你的腾讯云密钥标识';
		$secret = '你的腾讯云密钥密码';
		// 腾讯云短信发送短信需要指定应用id
		$appid = '你的腾讯云短信应用id';
		$sign = '你的腾讯云短信签名';
		$template = '你的阿里云短信模板';
		// 可发送多个手机号,变量为数组即可,如:[11111111111, 22222222222]
		$mobile = 11111111111;
		// 腾讯云模板变量为索引数组,当你传入关联数组时会按顺序变为索引数组,如:['name' => '张三', 'code' => '123'] => ['张三', '123']
		$params = [rand(1000, 9999)];
		$sms = new TencentSms($key, $secret);
		// 需要注意,设置配置不分先后顺序,send后也不会清空配置
		$result = $sms->setAppid($appid)->setMobile($mobile)->setTemplate($template)->setSign($sign)->setParams($params)->send();
		/**
		 * 返回值为bool,你可获得腾讯云响应做出你业务内的处理
		 *
		 * status bool 此变量是此包用来判断是否发送成功
		 * code string 腾讯云短信响应代码
		 * message string 腾讯云短信响应信息
		 */
		if (!$result) {
			$response = $sms->getResponse();
			// 做出处理
		}
	}
}



use Siam\Sms\AliSms;
use Siam\Sms\TencentSms;

return [
	'default' => 'ali',
	'ali' => [
		'key' => env('ALI_SMS_KEY'),
		'secret' => env('ALI_SMS_SECRET'),
		'drive' => AliSms::class,
		'actions' => [
			'register' => [
				'sign' => 'xxx论坛',
				'template' => '阿里云模板id',
			],
			'payment' => [
				'sign' => 'xxx商城',
				'template' => '阿里云模板id'
			]
		]
	],
	'tencent' => [
		'key' => env('TENCENT_SMS_KEY'),
		'secret' => env('TENCENT_SMS_SECRET'),
		'drive' => TencentSms::class,
		'actions' => [
			'register' => [
				'sign' => 'xxx论坛',
				'template' => '腾讯云模板id',
				'appid' => '腾讯云应用id'
			]
		]
	]
];

use SiamSms;

$sms = new SiamSms('tencent');
// 定义动作
$action = 'register';
// 可发送多个手机号,变量为数组即可,如:[11111111111, 22222222222]
$mobile = 11111111111;
// 使用腾讯云时,当你传入关联数组时会按顺序变为索引数组,如:['name' => '张三', 'code' => '123'] => ['张三', '123']
$params = ['code' => rand(1000, 9999)];
$result = $sms->send($action, $mobile, $params);
/**
 * 返回值为bool,你可获得腾讯云响应做出你业务内的处理
 *
 * status bool 此变量是此包用来判断是否发送成功
 * code string 腾讯云短信响应代码
 * message string 腾讯云短信响应信息
 */
if (!$result) {
	$response = $sms->getResponse();
	// 做出处理
}

$sms->getDirve();
shell
php artisan vendor:publish --provider="Siam\Sms\Laravel\ServiceProvider"