KeyService.php 209 B

12345678910111213
  1. <?php
  2. namespace app\extra\service\basic;
  3. class KeyService
  4. {
  5. public static function smsKey(int $mobile,string $scene = "login"): string
  6. {
  7. return "sms_{$mobile}_{$scene}";
  8. }
  9. }