Home > Article > Backend Development > PHP SMS verification code function development tutorial
PHP SMS Verification Code Function Development Tutorial
With the popularity and influence of mobile phones, SMS verification codes have become an important verification in many websites and applications. Way. In PHP development, how to implement the SMS verification code function? This article will introduce you to a simple and practical method for developing the SMS verification code function.
First, add the following code to the composer.json file in the project root directory:
{
"require": { "aliyuncs/sdk": "1.0.0" }
}
Then execute composer install on the command line to install the SDK.
<?php require_once 'vendor/autoload.php'; // 引入SDK use AliyunCoreDefaultAcsClient; use AliyunCoreProfileDefaultProfile; use AliyunCoreRegionsEndpoint; use AliyunApiSmsRequestV20170525 as Sms; // 短信配置参数 $accessKeyId = "your_access_key_id"; // 替换为您的AccessKeyId $accessKeySecret = "your_access_key_secret"; // 替换为您的AccessKeySecret $signName = "your_sign_name"; // 签名名称 $templateCode = "your_template_code"; // 模板CODE // 初始化短信客户端 function initSmsClient($accessKeyId, $accessKeySecret) { $regionId = 'cn-hangzhou'; // 替换为您的所在的Region $endPointName = 'cn-hangzhou'; // 替换为您的所在的Endpoint $product = 'Dysmsapi'; // 此处无需修改 // 初始化Profile $profile = DefaultProfile::getProfile($regionId, $accessKeyId, $accessKeySecret); DefaultProfile::addEndpoint($endPointName, $regionId, $product, $endPoint); $client = new DefaultAcsClient($profile); return $client; } // 发送短信验证码 function sendVerificationCode($phoneNumbers, $verifyCode) { $client = initSmsClient($accessKeyId, $accessKeySecret); $request = new SmsSingleSendSmsRequest(); // 发送短信请求 $request->setSignName($signName); // 设置短信签名 $request->setTemplateCode($templateCode); // 设置短信模板CODE $request->setRecNum($phoneNumbers); // 设置接收手机号码 $request->setParamString("{"code":"$verifyCode"}"); // 设置模板参数,此处以Json格式传入参数 try { $response = $client->getAcsResponse($request); if ($response->Code == 'OK') { return true; } } catch (Exception $e) { // 异常处理 } return false; } // 调用示例 $phoneNumbers = "13811112222"; // 接收短信的手机号码 $verifyCode = "123456"; // 随机生成的验证码 if (sendVerificationCode($phoneNumbers, $verifyCode)) { echo "短信验证码发送成功!"; } else { echo "短信验证码发送失败!"; }
The above is a simple PHP development tutorial to implement the SMS verification code function. Hope this article helps you!
The above is the detailed content of PHP SMS verification code function development tutorial. For more information, please follow other related articles on the PHP Chinese website!