template_code.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. return array
  3. (
  4. 'name' => '验证码设置',
  5. 'struct' => array
  6. (
  7. 'template_id' => array
  8. (
  9. 'type' => 'int(11)',
  10. 'name' => '模板',
  11. ),
  12. 'timeout' => array
  13. (
  14. 'type' => 'int(11)',
  15. 'name' => '有效期',
  16. 'default' => '600',
  17. ),
  18. 'length' => array
  19. (
  20. 'type' => 'int(11)',
  21. 'name' => '长度',
  22. 'default' => '4',
  23. ),
  24. 'type' => array
  25. (
  26. 'type' => 'tinyint(1)',
  27. 'name' => '类型',
  28. 'default' => '1',
  29. 'value' => array
  30. (
  31. 1 => '全数字',
  32. 2 => '小写字母',
  33. 3 => '大写字母',
  34. 4 => '大小写字母',
  35. 5 => '数字+大小写字母',
  36. ),
  37. ),
  38. 'total' => array
  39. (
  40. 'type' => 'int(11)',
  41. 'name' => '最大发送次数',
  42. 'default' => '5',
  43. ),
  44. 'interval' => array
  45. (
  46. 'type' => 'int(11)',
  47. 'name' => '发送间隔',
  48. 'default' => '60',
  49. ),
  50. ),
  51. );