Sms verification code for Laravel 4

短信验证码 For Laravel 4

目前接入平台有LuosiMao&YunPian后期将扩展其它平台

Installation

Require this package with composer:

composer require mrlian/smsservice

Usage

Find the providers key in config/app.php and register the SmsService Service Provider.

'providers' => [
    // ...
    'Mrlian\Smsservice\SmsserviceServiceProvider',
]

Find the aliases key in config/app.php.

'aliases' => [
    // ...
    'SmsService' => 'Mrlian\Smsservice\Vendor\SmsService',
]

Configuration

To use your own settings, publish config.

$ php artisan config:publish mrlian/smsservice

Find the config in config/packages/mrlian/smsservice/config.php.

Example Usage

实例化一个短信平台.

$sms = SmsService::factory('YunPian');

$sms->sendSmsCode('yourPhoneNum', 'verificationCode');

可用方法:

  1. $sms->getCode(); // 返回短信商信息代码0表示发送成功,其它代码自行查阅
  2. $sms->getMsg(); // 返回短信商反馈信息

异常:(用于短信发送失败后切换平台)

$sms = SmsService::factory('LuosiMao');
$sms->sendSmsCode('yourPhoneNum', 'verificationCode');
try {
    $sms->getCode();
} catch (Mrlian\Smsservice\Vendor\SmsException $e) {
    $sms = SmsService::factory('YunPian');
}

欢迎Fork

《L05 电商实战》
从零开发一个电商项目,功能包括电商后台、商品 & SKU 管理、购物车、订单管理、支付宝支付、微信支付、订单退款流程、优惠券等
《L02 从零构建论坛系统》
以构建论坛项目 LaraBBS 为线索,展开对 Laravel 框架的全面学习。应用程序架构思路贴近 Laravel 框架的设计哲学。
讨论数量: 2

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!