亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用PHP怎么實現一個手機短信驗證碼功能

發布時間:2021-05-14 16:58:41 來源:億速云 閱讀:205 作者:Leah 欄目:開發技術

使用PHP怎么實現一個手機短信驗證碼功能?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

1、實現流程

輸入手機號,點擊獲取驗證碼
提交正確的短信驗證碼后,注冊完成

2、實現思路圖

使用PHP怎么實現一個手機短信驗證碼功能

3、注冊 云片,以及開發信息認證,模板設置,這里就不詳細展開了

4、安裝 easy-sms,easy-sms 是安正超寫的一個短信發送組件,利用這個組件,我們可以快速的實現短信發送功能。

composer require "overtrue/easy-sms"
//新建配置文件
touch config/easysms.php

然后在 easysms.php 文件內 添加以下內容:

 <?php

  return [

    'timeout'=>5.0,
    'default'=>[
      // 網關調用策略,默認:順序調用
      'strategy' => \Overtrue\EasySms\Strategies\OrderStrategy::class,

      // 默認可用的發送網關
      'gateways' => [
        'yunpian',
      ],
    ],
    // 可用的網關配置
    'gateways' => [
      'errorlog' => [
        'file' => '/tmp/easy-sms.log',
      ],
      'yunpian' => [
        'api_key' => env('YUNPIAN_API_KEY'),
      ],
    ],

];

然后創建一個 ServiceProvider

php artisan make:provider EasySmsServiceProvider

修改文件

app/providers/EasySmsServiceProvider.php

<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;
use Overtrue\EasySms\EasySms;

class EasySmsServiceProvider extends ServiceProvider
{
  /**
   * Bootstrap services.
   *
   * @return void
   */
  public function boot()
  {
    //
  }

  /**
   * Register services.
   *
   * @return void
   */
  public function register()
  {
    $this->app->singleton(EasySms::class,function ($app){

      return new EasySms(config('easysms'));

    });

    $this->app->alias(EasySms::class,'easysms');
  }
}

最后 打開config/app.php 在 providers 中增加 App\Providers\EasySmsServiceProvider::class,

5、獲取云片的API_KEY

在.env中配置 YUNPIAN_API_KEY,注意下面需要替換為你自己的 key

6、控制器代碼 獲取驗證碼(將code 以及key存入緩存)

public function getVerificationCode($request)
  {
    if(FALSE === $this->validateApiRequest($request->all(),
        ['mobile' => 'required|regex:/^1[34578]\d{9}$/|unique:users'],[
          'mobile.required'=>'請輸入手機號',
          'mobile.regex'=>'手機號格式不正確',
          'mobile.unique'=>'手機號已存在'
        ])){
      return false;
    }

    $mobile = trim($request->get('mobile'));
    $code = str_pad(random_int(1,9999),4,0,STR_PAD_LEFT);


    try{
       $easySms->send($mobile,
        ['content'=>"【UKNOW】您的驗證碼是{$code}。如非本人操作,請忽略本短信"]       );

    }catch(\GuzzleHttp\Exception\ClientException $exception){

      $response = $exception->getResponse();
      $result =json_decode($response->getBody()->getContents(),true);
      $this->setMsg($result['msg']?? '短信發送異常');
      return false;
    }

    $key = 'verificationCode'.str_random(15);
    $expiredAt = now()->addMinutes(1);
    Cache::put($key,['mobile'=>$mobile,'code'=>$code],$expiredAt);

    return [
      'verification_key'=>$key,
      'expiredAt'=>$expiredAt->toDateTimeString(),
      'verification_code'=>$code
      ];
}

7、對比驗證碼

public function userStore($mobile, $verification_key,$code,$password,$password_confirmation)
 {

  $params = [
   'mobile'=>$mobile,
   'verification_key'=>$verification_key,
   'code'=>$code,
   'password'=>$password,
   'password_confirmation'=>$password_confirmation
  ];
  //參數判斷
  if (
   FALSE === $this->validateApiRequest($params, [
    'mobile' => 'required|regex:/^1[34578]\d{9}$/|unique:users',
    'code' => 'required',
    'verification_key'=>'required',
    'password'  => 'required|min:6|confirmed',
    'password_confirmation' => 'required',
   ], [
    'mobile.required' => '請輸入手機號',
    'mobile.regex' => '手機號格式不正確',
    'mobile.unique' => '手機號已存在',
    'code.required' => '請輸入短信驗證碼',
    'password.required' => '請輸入密碼',
    'password.min'   => '密碼不得小于6位',
    'password.confirmed' => '密碼前后不一致',
    'password_confirmation.required'=>'請再次輸入密碼',
    'verification_key.required'=>'請輸入短信驗證碼'
   ])
  ) {
   return false;
  }

  $verifyData = Cache::get($verification_key);
  if( !$verifyData){
   $this->setMsg('驗證碼已失效');
   return false;
  }
  if(!hash_equals($code,(string)$verifyData['code'])){
   $this->setMsg('驗證碼錯誤');
   return false;
  }

  Cache::forget($verification_key);
  $user = User::create([
   'mobile'=>$mobile,
   'password'=>bcrypt($password)
  ]);
  if(!$user){
   $this->setMsg('注冊失敗');
   return false;
  }
  return true;
}

php有什么特點

1、執行速度快。2、具有很好的開放性和可擴展性。3、PHP支持多種主流與非主流的數據庫。4、面向對象編程:PHP提供了類和對象。5、版本更新速度快。6、具有豐富的功能。7、可伸縮性。8、功能全面,包括圖形處理、編碼與解碼、壓縮文件處理、xml解析等。

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

荆州市| 民和| 车险| 洪洞县| 张家口市| 饶平县| 双辽市| 冀州市| 永定县| 萨嘎县| 长治市| 大名县| 北安市| 福建省| 岳西县| 资溪县| 金溪县| 义乌市| 肇州县| 阳城县| 宁夏| 出国| 沙坪坝区| 兴安县| 沂源县| 东辽县| 玉树县| 自治县| 申扎县| 永新县| 榆林市| 全南县| 左贡县| 收藏| 华安县| 甘肃省| 青阳县| 千阳县| 嫩江县| 福清市| 黄山市|