91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

php手機驗證碼實現的方法

發布時間:2021-03-08 14:00:34 來源:億速云 閱讀:228 作者:TREX 欄目:編程語言

這篇文章主要介紹“php手機驗證碼實現的方法”,在日常操作中,相信很多人在php手機驗證碼實現的方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”php手機驗證碼實現的方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

php手機驗證碼的實現方法:首先注冊云片以及開發信息認證,并進行模板設置;然后在“easysms.php”文件內添加“'default'=>[]”等內容;接著獲取云片的API_KEY;最后通過控制器代碼獲取驗證碼即可。

php手機驗證碼實現的方法

本文操作環境:Windows7系統、PHP7.1、Dell G3電腦。

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

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

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

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手機驗證碼實現的方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

php
AI

旬邑县| 吉安市| 米泉市| 阜新| 深圳市| 淳安县| 合水县| 泽普县| 四子王旗| 柘荣县| 双鸭山市| 潜江市| 新干县| 安义县| 肃宁县| 富宁县| 新泰市| 桦甸市| 莎车县| 云龙县| 蒙城县| 凤翔县| 盖州市| 黎平县| 同江市| 荥经县| 大兴区| 万载县| 平利县| 石楼县| 岱山县| 石城县| 东乡县| 政和县| 夏邑县| 宁津县| 温州市| 桦川县| 江城| 五寨县| 扶风县|