Lines Matching defs:IRI
49 * IRI parser/serialiser/normaliser
59 class IRI
113 * Each key is the scheme, each value is an array with each key as the IRI
137 * Return the entire IRI when you try and read the object as a string
235 * Create a new IRI object, from a specified string
255 * Create a new IRI object by resolving a relative IRI
257 * Returns false if $base is not absolute, otherwise an IRI.
259 * @param IRI|string $base (Absolute) Base IRI
260 * @param IRI|string $relative Relative IRI
261 * @return IRI|false
265 if (!($relative instanceof IRI)) {
266 $relative = new IRI($relative);
273 if (!($base instanceof IRI)) {
274 $base = new IRI($base);
282 $target = new IRI();
322 * Parse an IRI into scheme/authority/path/query/fragment segments
675 * Check if the object represents a valid IRI. This needs to be done on each
676 * call as some things change depending on another part of the IRI.
709 * Set the entire IRI. Returns true on success, false on failure (if there
1004 * Convert an IRI to a URI (or parts thereof)
1027 * Get the complete IRI
1109 class_alias('SimplePie\IRI', 'SimplePie_IRI');