導讀:程序開發程序開發一款大佬分享的簡單方便阿里云短信封裝代碼,不用官網復雜的SDK,快速上手。 由CMS適配成pbootcms,可以拿來快速制作短信發送功能。 封裝代碼 ?php seo網站關鍵詞優化網站建設制作。
一款大佬分享的簡單方便阿里云短信封裝代碼,不用官網復雜的SDK,快速上手。 由CMS適配成pbootcms,可以拿來快速制作短信發送功能。 封裝代碼 ?php /** *@authorCMS88 *阿里云SMS */ namespacecore\sms; usecore\basic\Config; classAliyunSms{ //保存錯誤信息 public$error; //AccessKeyID private$accessKeyId=; //AccessAccessKeySecret privat […]
一款大佬分享的簡單方便阿里云短信封裝代碼,不用官網復雜的SDK,快速上手。
由CMS適配成pbootcms,可以拿來快速制作短信發送功能。
封裝代碼
<?php
/**
* @author CMS88
* 阿里云SMS
*/
namespace core\sms;
use core\basic\Config;
class AliyunSms {
// 保存錯誤信息
public $error;
// Access Key ID
private $accessKeyId = '';
// Access Access Key Secret
private $accessKeySecret = '';
// 簽名
private $signName = '';
// 模版ID
private $templateCode = '';
public function __construct() {
// 配置參數
$this->accessKeyId = Config::get('sms_appid');
$this->accessKeySecret = Config::get('sms_secret');
$this->signName = Config::get('sms_signame');
$this->templateCode = Config::get('sms_checkcodetpl');
}
private function percentEncode($string) {
$string = urlencode ( $string );
$string = preg_replace ( '/\+/', '%20', $string );
$string = preg_replace ( '/\*/', '%2A', $string );
關鍵詞標簽: CMS 阿里 短信發送
聲明: 本文由我的SEOUC技術文章主頁發布于:2023-05-25 ,文章適合PbootCMS的阿里云短信發送類程序開發主要講述阿里,短信發送,CMS網站建設源碼以及服務器配置搭建相關技術文章。轉載請保留鏈接: http://www.bifwcx.com/article/web_8301.html