開通SMS服務
先去這個網站開通阿里雲的SMS簡訊服務:https://www.aliyun.com/product/sms?spm=5176.8142029.388261.295.vU5T5g
#相關學習推薦:php程式設計(影片)
建立簽名、模板
要使用簡訊伺服器需要先建立簽名和模板,並提交給阿里雲審核通過才可以正常使用簡訊服務。
建立簽章
#建立簽章的時候注意一下簽章名稱,其他的話就不累贅了。
記住簽章名稱
#現在請記住你所建立的簽章名稱,一會在代碼中需要使用。
建立範本
建立範本也很簡單,阿里雲已經把要如何填入寫的很清楚了。
檢視並記住範本CODE
回到你的控制台,當你的範本審核通過時這就會出現大於0的數。
點選這個數,會進入範本管理面板就能看到你的範本CODE了,請記得他。
#建立並記住KeyId和KeySecret
到控制台,把滑鼠放到右上角你的用戶名的位置會出現一個accessKeySecret點進去就可以創建KeyId和KeySecret了,如果他提醒你用RAM安全什麼的,你看你要不要給你的員工一個權限,如果要的話就用RAM,否則就直接點選繼續使用就好了。
下載阿里雲簡訊伺服器PHP-SDK
#官方下載位址:https://help.aliyun. com/document_detail/55359.html?spm=5176.8195934.507901.12.b1ngGK
本教學使用SDK下載網址:http://pan.baidu.com/s/1bpF5B8z
##白匙
#白匙
建立PHP-SMS專案#建立程式碼檔案
建立你的程式碼文件,並把這個檔案放在剛才下載的SDK資料夾中的api_sdk的aliyun-php-sdk-core目錄下,並把一下程式碼寫入程式碼檔案。
移入Requset############還是在下載的SDK資料夾中的api_sdk目錄下,有一個交Dysmsapi的資料夾,開啟這個資料夾就會看到一個叫Request的資料夾,把這個Reques。的件夾複製貼上到aliyun-php-sdk-core裡面。說實在的我搞不清阿里雲這個為什麼要這樣分開裝SDK,可能是我使用的姿勢不對吧,如果有大神搞得清,還勞煩賜教小弟,好人一生平安。 ###移入後,開啟Request\V20170525目錄裡有一個SendSmsRequest.php的來源檔。請屏蔽第一行的空間命名。也就是這一行namespace Dysmsapi\Reqest\V20170525;最後效果如下###
<?php /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ //namespace Dysmsapi\Request\V20170525;//就是屏蔽这一行代码!!!! class SendSmsRequest extends \RpcAcsRequest { function __construct() { parent::__construct("Dysmsapi", "2017-05-25", "SendSms"); } private $outId; private $signName; private $ownerId; private $resourceOwnerId; private $templateCode; private $phoneNumbers; private $resourceOwnerAccount; private $templateParam; public function getOutId() { return $this->outId; } public function setOutId($outId) { $this->outId = $outId; $this->queryParameters["OutId"]=$outId; } public function getSignName() { return $this->signName; } public function setSignName($signName) { $this->signName = $signName; $this->queryParameters["SignName"]=$signName; } public function getOwnerId() { return $this->ownerId; } public function setOwnerId($ownerId) { $this->ownerId = $ownerId; $this->queryParameters["OwnerId"]=$ownerId; } public function getResourceOwnerId() { return $this->resourceOwnerId; } public function setResourceOwnerId($resourceOwnerId) { $this->resourceOwnerId = $resourceOwnerId; $this->queryParameters["ResourceOwnerId"]=$resourceOwnerId; } public function getTemplateCode() { return $this->templateCode; } public function setTemplateCode($templateCode) { $this->templateCode = $templateCode; $this->queryParameters["TemplateCode"]=$templateCode; } public function getPhoneNumbers() { return $this->phoneNumbers; } public function setPhoneNumbers($phoneNumbers) { $this->phoneNumbers = $phoneNumbers; $this->queryParameters["PhoneNumbers"]=$phoneNumbers; } public function getResourceOwnerAccount() { return $this->resourceOwnerAccount; } public function setResourceOwnerAccount($resourceOwnerAccount) { $this->resourceOwnerAccount = $resourceOwnerAccount; $this->queryParameters["ResourceOwnerAccount"]=$resourceOwnerAccount; } public function getTemplateParam() { return $this->templateParam; } public function setTemplateParam($templateParam) { $this->templateParam = $templateParam; $this->queryParameters["TemplateParam"]=$templateParam; } }###完成######執行試試看################## #####################相關學習推薦:###程式設計影片#########
以上是阿里雲PHP SMS簡訊服務驗證碼發送方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!