好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > PHP手機短信驗證碼實現流程詳解

PHP手機短信驗證碼實現流程詳解

熱門標簽:智能外呼電銷系統 寶安400電話辦理 哈爾濱400電話辦理到易號網 合肥外呼系統app 電銷機器人-快迭智能 h5 地圖標注 高識別電銷機器人 沈陽人工智能電銷機器人公司 拉薩打電話機器人

本人在自己博客(Laravel)的注冊部分 使用手機號注冊,需要發送短信驗證碼。

使用云片的短信服務提供商,當然具體短信服務提供商大家可以自由選擇。

1、實現流程

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

2、實現思路圖

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;
}

以上流程就是手機驗證碼基本步驟。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • thinkPHP框架實現的短信接口驗證碼功能示例
  • php利用云片網實現短信驗證碼功能的示例代碼
  • 阿里云PHP SMS短信服務驗證碼發送方法
  • 基于PHP實現短信驗證碼接口(容聯運通訊)
  • php發送短信驗證碼完成注冊功能
  • php實現的IMEI限制的短信驗證碼發送類
  • 基于PHP實現短信驗證碼發送次數限制

標簽:山東 泰州 張家口 巴中 林芝 威海 成都 梅州

巨人網絡通訊聲明:本文標題《PHP手機短信驗證碼實現流程詳解》,本文關鍵詞  PHP,手機短信,驗證,碼,實現,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《PHP手機短信驗證碼實現流程詳解》相關的同類信息!
  • 本頁收集關于PHP手機短信驗證碼實現流程詳解的相關信息資訊供網民參考!
  • 推薦文章