Home
last modified time | relevance | path

Searched refs:iri (Results 1 – 2 of 2) sorted by relevance

/dokuwiki/vendor/simplepie/simplepie/src/
DIRI.php236 * @param string $iri
238 public function __construct($iri = null) argument
240 $this->set_iri($iri);
323 * @param string $iri
326 protected function parse_iri($iri) argument
328 $iri = trim($iri, "\x20\x09\x0A\x0C\x0D");
329 …authority>[^\/?#]*))?(?P<path>[^?#]*)(\?(?P<query>[^#]*))?(#(?P<fragment>.*))?$/', $iri, $match)) {
711 * @param string $iri
714 public function set_iri($iri, $clear_cache = false) argument
725 if ($iri === null) {
[all …]
DMisc.php85 $iri = \SimplePie\IRI::absolutize(new \SimplePie\IRI($base), $relative);
86 if ($iri === false) {
89 return $iri->get_uri();
223 $iri = new \SimplePie\IRI($url);
225 'scheme' => (string) $iri->scheme,
226 'authority' => (string) $iri->authority,
227 'path' => (string) $iri->path,
228 'query' => (string) $iri->query,
229 'fragment' => (string) $iri->fragment
235 $iri = new \SimplePie\IRI('');
[all …]