Home
last modified time | relevance | path

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

/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php184 $name === 'authority'
322 * Parse an IRI into scheme/authority/path/query/fragment segments
330 if (preg_match('/^((?P<scheme>[^:\/?#]+):)?(\/\/(?P<authority>[^\/?#]*))?(?P<path>[^?#]*)(\?(?P<query>[^#]*))?(#(?P<fragment>.*))?$/', $iri, $match)) {
335 $match['authority'] = null;
749 && $this->set_authority($parsed['authority'])
789 * Set the authority. Returns true on success, false on failure (if there are
792 * @param string $authority
795 public function set_authority($authority, $clear_cache = false) argument
806 if ($authority === null) {
811 } elseif (isset($cache[$authority])) {
[all...]
H A DMisc.php188 return Misc::fix_protocol(Misc::compress_parse_url('http', $parsed['authority'], $parsed['path'], $parsed['query'], $parsed['fragment']), $http);
191 if ($parsed['scheme'] === '' && $parsed['authority'] === '' && !file_exists($url)) {
227 'authority' => (string) $iri->authority,
234 public static function compress_parse_url($scheme = '', $authority = '', $path = '', $query = '', $fragment = '') argument
238 $iri->authority = $authority;