TP5 use cache to store SMS verification code, and to avoid repeated transmission and verification function in 60 seconds

Source: Internet
Author: User

/** * Detect SMS Verification Code * #User: Mikkle * #Email: 776329498@qq. com * #Date: *@param $mobile *@param bool|false $code *@return BOOL */ProtectedfunctionCheckregsms($mobile, $code = False) {if (! $mobile)ReturnFalseif ($code = = =False) {Determine if the send is repeated within 60 secondsif (! Cache::has (' Sms_ '. $mobile))ReturnTrueif (Cache::get (' Sms_ '. $mobile) [' Times '] > Time ()) {ReturnFalse }else {ReturnTrue } }else {Determine if the verification code is entered correctlyif (! Cache::has (' Sms_ '. $mobile))ReturnFALSE; if (Cache::get ( " Code '] = = $code) {return true;} else {return false;}} /** * Set phone short coupon Verification code cache * #User: Mikkle * #Email: 776329498 @qq. com * #Date: * 
                                               
                                                 @param $data _cache */
                                                protected function setregsmscache ($data _cache) { Cache::set ( ' Sms_ '. $data _cache[ ' mobile '], $data _cache, 300); }
                                                

The

Tp5 uses the cache to store SMS verification codes, while avoiding repeated sending and verifying functions within 60 seconds

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.