Captcha.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2024 https://www.yiovo.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
  8. // +----------------------------------------------------------------------
  9. // | Author: 萤火科技 <admin@yiovo.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types=1);
  12. namespace app\api\service\passport;
  13. use app\common\service\BaseService;
  14. use yiovo\captcha\facade\CaptchaApi;
  15. /**
  16. * 服务类:图形验证码
  17. * Class Captcha
  18. * @package app\api\service\passport
  19. */
  20. class Captcha extends BaseService
  21. {
  22. /**
  23. * 图形验证码
  24. * @return array
  25. */
  26. public function create(): array
  27. {
  28. $data = CaptchaApi::create();
  29. return [
  30. 'base64' => str_replace("\r\n", '', $data['base64']),
  31. 'key' => $data['key'],
  32. 'md5' => $data['md5']
  33. ];
  34. }
  35. }