Home
last modified time | relevance | path

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

/dokuwiki/vendor/simplepie/simplepie/src/
H A DFile.php146 $url_parts = parse_url($url);
147 $socket_host = $url_parts['host'];
148 if (isset($url_parts['scheme']) && strtolower($url_parts['scheme']) === 'https') {
149 $socket_host = "ssl://$url_parts[host]";
150 $url_parts['port'] = 443;
152 if (!isset($url_parts['port'])) {
153 $url_parts['port'] = 80;
155 $fp = @fsockopen($socket_host, $url_parts['port'], $errno, $errstr, $timeout);
161 if (isset($url_parts['pat
[all...]