ajcaptcha.php 2.2 KB

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