ajcaptcha.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. declare(strict_types=1);
  12. return [
  13. 'font_file' => '', //自定义字体包路径, 不填使用默认值
  14. //文字验证码
  15. 'click_world' => [
  16. 'backgrounds' => []
  17. ],
  18. //滑动验证码
  19. 'block_puzzle' => [
  20. /*背景图片路径, 不填使用默认值, 支持string与array两种数据结构。string为默认图片的目录,array索引数组则为具体图片的地址*/
  21. 'backgrounds' => [
  22. public_path().'statics/images/check1.jpg',
  23. public_path().'statics/images/check2.jpg',
  24. public_path().'statics/images/check3.jpg',
  25. public_path().'statics/images/check4.jpg',
  26. ],
  27. /*模板图,格式同上支持string与array*/
  28. 'templates' => [],
  29. 'offset' => 10, //容错偏移量
  30. 'is_cache_pixel' => true, //是否开启缓存图片像素值,开启后能提升服务端响应性能(但要注意更换图片时,需要清除缓存)
  31. 'is_interfere' => true, //开启干扰图
  32. ],
  33. //水印
  34. 'watermark' => [
  35. 'fontsize' => 12,
  36. 'color' => '#FFFFFF',
  37. 'text' => 'CRMEB'
  38. ],
  39. 'cache' => [
  40. //若您使用了框架,并且想使用类似于redis这样的缓存驱动,则应换成框架的中的缓存驱动
  41. 'constructor' => app()->make(\think\Cache::class),
  42. 'method' => [
  43. //遵守PSR-16规范不需要设置此项(tp6, laravel,hyperf)。如tp5就不支持(tp5缓存方法是rm,所以要配置为"delete" => "rm")
  44. /**
  45. * 'get' => 'get', //获取
  46. * 'set' => 'set', //设置
  47. * 'delete' => 'delete',//删除
  48. * 'has' => 'has' //key是否存在
  49. */
  50. ],
  51. 'options' => [
  52. //如果您依然使用\Fastknife\Utils\CacheUtils做为您的缓存驱动,那么您可以自定义缓存配置。
  53. 'expire' => 300,//缓存有效期 (默认为0 表示永久缓存)
  54. 'prefix' => '', //缓存前缀
  55. 'path' => '', //缓存目录
  56. 'serialize' => [], //缓存序列化和反序列化方法
  57. ]
  58. ]
  59. ];