您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

23 行
569B

  1. <?php
  2. namespace Config;
  3. use CodeIgniter\Config\BaseConfig;
  4. class CURLRequest extends BaseConfig
  5. {
  6. /**
  7. * --------------------------------------------------------------------------
  8. * CURLRequest Share Options
  9. * --------------------------------------------------------------------------
  10. *
  11. * Whether share options between requests or not.
  12. *
  13. * If true, all the options won't be reset between requests.
  14. * It may cause an error request with unnecessary headers.
  15. *
  16. * @var bool
  17. */
  18. public $shareOptions = true;
  19. }