Method |
Description |
|
SimplePie_IRI ( string $iri ) : SimplePie_IRI |
Create a new IRI object, from a specified string |
|
__toString ( ) : string |
Return the entire IRI when you try and read the object as a string |
|
absolutize ( SimplePie_IRI $base, string $relative ) : SimplePie_IRI |
Create a new IRI object by resolving a relative IRI |
|
get_authority ( ) : string |
Get the complete authority |
|
get_fragment ( ) : string |
Get the fragment |
|
get_host ( ) : string |
Get the host |
|
get_iri ( ) : string |
Get the complete IRI |
|
get_path ( ) : string |
Get the path |
|
get_port ( ) : string |
Get the port |
|
get_query ( ) : string |
Get the query |
|
get_scheme ( ) : string |
Get the scheme |
|
get_userinfo ( ) : string |
Get the user information |
|
is_valid ( ) : boolean |
Check if the object represents a valid IRI |
|
parse_iri ( string $iri ) : array |
Parse an IRI into scheme/authority/path/query/fragment segments |
|
remove_dot_segments ( string $input ) : string |
Remove dot segments from a path |
|
replace_invalid_with_pct_encoding ( string $string, string $valid_chars, integer $case = SIMPLEPIE_SAME_CASE ) : string |
Replace invalid character with percent encoding |
|
set_authority ( string $authority ) : boolean |
Set the authority. Returns true on success, false on failure (if there are
any invalid characters). |
|
set_fragment ( string $fragment ) : boolean |
Set the fragment. |
|
set_host ( string $host ) : boolean |
Set the host. Returns true on success, false on failure (if there are
any invalid characters). |
|
set_path ( string $path ) : boolean |
Set the path. |
|
set_port ( string $port ) : boolean |
Set the port. Returns true on success, false on failure (if there are
any invalid characters). |
|
set_query ( string $query ) : boolean |
Set the query. |
|
set_scheme ( string $scheme ) : boolean |
Set the scheme. Returns true on success, false on failure (if there are
any invalid characters). |
|
set_userinfo ( string $userinfo ) : boolean |
Set the userinfo. |
|