Searched refs:iri (Results 1 – 2 of 2) sorted by relevance
| /dokuwiki/vendor/simplepie/simplepie/src/ |
| H A D | IRI.php | 208 * @param string|null $iri 210 public function __construct(?string $iri = null) argument 212 $this->set_iri($iri); 296 * @param string $iri 305 protected function parse_iri(string $iri) argument 307 $iri = trim($iri, "\x20\x09\x0A\x0C\x0D"); 308 …/?#]*))?(?P<path>[^?#]*)(?:\?(?P<query>[^#]*))?(?:#(?P<fragment>.*))?$/', $iri, $match, \PREG_UNMA… 684 * @param string|null $iri 687 public function set_iri(?string $iri, bool $clear_cache = false) argument 698 if ($iri === null) { [all …]
|
| H A D | Misc.php | 53 $iri = \SimplePie\IRI::absolutize(new \SimplePie\IRI($base), $relative); 54 if ($iri === false) { 57 return $iri->get_uri(); 222 $iri = new \SimplePie\IRI($url); 224 'scheme' => (string) $iri->scheme, 225 'authority' => (string) $iri->authority, 226 'path' => (string) $iri->path, 227 'query' => (string) $iri->query, 228 'fragment' => (string) $iri->fragment 237 $iri = new \SimplePie\IRI(''); [all …]
|