控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.php 841B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. return [
  3. [
  4. 'name' => 'baidu',
  5. 'title' => '百度站长',
  6. 'type' => 'array',
  7. 'value' => [
  8. 'site' => '',
  9. 'token' => '',
  10. ],
  11. 'tip' => '请前往百度站长平台获取',
  12. ],
  13. [
  14. 'name' => 'shenma',
  15. 'title' => '神马站长',
  16. 'type' => 'array',
  17. 'value' => [
  18. 'site' => '',
  19. 'user_name' => '',
  20. 'token' => '',
  21. ],
  22. 'tip' => '请前往神马站长平台获取',
  23. ],
  24. [
  25. 'name' => 'status',
  26. 'title' => '推送状态',
  27. 'type' => 'checkbox',
  28. 'options' => [
  29. 'baidu' => '百度站长',
  30. 'shenma' => '神马搜索',
  31. ],
  32. 'tip' => '',
  33. 'value' => 'baidu,shenma',
  34. ],
  35. ];