Home
last modified time | relevance | path

Searched refs:curl_options (Results 1 – 4 of 4) sorted by path

/dokuwiki/inc/
H A DFeedParserFile.php31 __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false, $curl_options = array()) global() argument
/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php72 public function __construct($url, $timeout = 10, $redirects = 5, $headers = null, $useragent = null, $force_fsockopen = false, $curl_options = []) argument
109 foreach ($curl_options as $curl_param => $curl_value) {
138 $this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_options);
203 $this->__construct($location, $timeout, $redirects, $headers, $useragent, $force_fsockopen, $curl_options);
H A DLocator.php70 public $curl_options = []; variable in SimplePie\\Locator
74 public function __construct(\SimplePie\File $file, $timeout = 10, $useragent = null, $max_checked_feeds = 10, $force_fsockopen = false, $curl_options = []) argument
81 $this->curl_options = $curl_options;
229 $feed = $this->registry->create(File::class, [$href, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
336 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
358 $feed = $this->registry->create(File::class, [$value, $this->timeout, 5, null, $this->useragent, $this->force_fsockopen, $this->curl_options]);
H A DSimplePie.php487 public $curl_options = []; variable in SimplePie\\SimplePie
850 * @param array $curl_options Curl options to add to default settings
852 public function set_curl_options(array $curl_options = []) argument
854 $this->curl_options = $curl_options;
964 if (!empty($this->curl_options)) {
965 foreach ($this->curl_options as $k => $v) {
1554 $this->sanitize->pass_file_data($this->registry->get_class(File::class), $this->timeout, $this->useragent, $this->force_fsockopen, $this->curl_options);
1777 $file = $this->registry->create(File::class, [$this->feed_url, $this->timeout/10, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
1819 $file = $this->registry->create(File::class, [$this->feed_url, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options]);
[all...]