Home
last modified time | relevance | path

Searched refs:iri (Results 1 – 2 of 2) sorted by last modified time

/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php86 $iri = \SimplePie\IRI::absolutize(new \SimplePie\IRI($base), $relative);
87 if ($iri === false) {
90 return $iri->get_uri();
224 $iri = new \SimplePie\IRI($url);
226 'scheme' => (string) $iri->scheme,
227 'authority' => (string) $iri->authority,
228 'path' => (string) $iri->path,
229 'query' => (string) $iri->query,
230 'fragment' => (string) $iri->fragment
236 $iri
[all...]
H A DIRI.php181 $name === 'iri' ||
237 * @param string $iri
239 public function __construct($iri = null) argument
241 $this->set_iri($iri);
324 * @param string $iri
327 protected function parse_iri($iri) argument
329 $iri = trim($iri, "\x20\x09\x0A\x0C\x0D");
330 if (preg_match('/^((?P<scheme>[^:\/?#]+):)?(\/\/(?P<authority>[^\/?#]*))?(?P<path>[^?#]*)(\?(?P<query>[^#]*))?(#(?P<fragment>.*))?$/', $iri, $match)) {
712 * @param string $iri
715 set_iri($iri, $clear_cache = false) global() argument
[all...]