12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * Created by PhpStorm
- * User: 林志杰
- * Email: [email protected]
- * Time: 2020/1/11 17:56
- */
- declare(strict_types=1);
- namespace app\common\business;
- use AlibabaCloud\Client\Exception\ClientException;
- use app\common\lib\sms\AliSms;
- class Sms
- {
- public static function sendCode(string $phoneNumber): bool
- {
- // 生成短信验证码
- $code = random_int(100000, 999999);
- $sms = AliSms::sendCode($phoneNumber, $code);
- if ($sms) {
- // 将验证码记录到redis,并设置失效时间
- // 检查php环境是否有redis拓展
- // redis服务
- cache(config('redis.code_pre').$phoneNumber,$code,config('redis.expire'));
- }
- return true;
- }
- }
|