| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace App\Services;
- use App\Constants\HttpStatus;
- use Exception;
- class SmsService
- {
- private static string $uri = "https://api.smsbao.com/sms";
- private static array $errors = [
- '30' => '错误密码',
- '40' => '账号不存在',
- '41' => '余额不足',
- '43' => "IP地址限制",
- '50' => "内容含有敏感词",
- '51' => '手机号码不正确'
- ];
- /**
- * @param $phone
- * @throws Exception
- */
- public static function sendPhoneCode($phone)
- {
- $username = config('services.sms.username');
- $password = config('services.sms.password');
- $content = config("services.sms.content");
- $code = mt_rand(100000, 999999);
- $content = str_replace("{code}", $code, $content);
- $data = [
- 'username' => $username,
- 'password' => $password,
- 'phone' => $phone,
- 'content' => $content,
- ];
- $url = static::$uri . "?u=" . $username . "&p=" . md5($password);
- $url .= "&c=" . urlencode($content);
- $url .= "&m=" . $phone;
- $res = file_get_contents($url);
- $data['res'] = $res;
- return $data;
- // if (!empty(static::$errors[$res])) {
- // throw new Exception(static::$errors[$res], HttpStatus::CUSTOM_ERROR);
- // }
- // if ($res != 0) throw new Exception("发送失败", HttpStatus::CUSTOM_ERROR);
- // return $data;
- }
- }
|