| Package | SimplePie |

class SimplePie_IRI
| Package | SimplePie |
| + $fragment | Fragment |
| + $host | Host |
| + $path | Path |
| + $port | Port |
| + $query | Query |
| + $scheme | Scheme |
| + $userinfo | User Information |
| + $valid | Whether the object represents a valid IRI |
| + SimplePie_IRI() | Create a new IRI object, from a specified string |
| + __toString() | Return the entire IRI when you try and read the object as a string |
| + absolutize() | Create a new IRI object by resolving a relative IRI |
| + get_authority() | Get the complete authority |
| + get_fragment() | Get the fragment |
| + get_host() | Get the host |
| + get_iri() | Get the complete IRI |
| + get_path() | Get the path |
| + get_port() | Get the port |
| + get_query() | Get the query |
| + get_scheme() | Get the scheme |
| + get_userinfo() | Get the user information |
| + is_valid() | Check if the object represents a valid IRI |
| + parse_iri() | Parse an IRI into scheme/authority/path/query/fragment segments |
| + remove_dot_segments() | Remove dot segments from a path |
| + replace_invalid_with_pct_encoding() | Replace invalid character with percent encoding |
| + set_authority() | Set the authority |
| + set_fragment() | Set the fragment |
| + set_host() | Set the host |
| + set_path() | Set the path |
| + set_port() | Set the port |
| + set_query() | Set the query |
| + set_scheme() | Set the scheme |
| + set_userinfo() | Set the userinfo |
var $fragmentvar $userinfovar $valid = array()
function SimplePie_IRI( |
$iri)
|
string $iri |
SimplePie_IRI
function __toString( |
)
|
function absolutize( |
$base)
|
|
Base IRI |
string $relative |
Relative IRI |
SimplePie_IRI
function get_authority( |
)
|
function get_fragment( |
)
|
function get_host( |
)
|
function get_iri( |
)
|
function get_path( |
)
|
function get_port( |
)
|
function get_query( |
)
|
function get_scheme( |
)
|
function get_userinfo( |
)
|
function is_valid( |
)
|
function parse_iri( |
$iri)
|
string $iri |
function remove_dot_segments( |
$input)
|
string $input |
function replace_invalid_with_pct_encoding( |
$string)
|
string $string |
Input string |
string $valid_chars |
Valid characters |
int $case |
Normalise case |
function set_authority( |
$authority)
|
string $authority |
function set_fragment( |
$fragment)
|
string $fragment |
function set_host( |
$host)
|
string $host |
function set_path( |
$path)
|
string $path |
function set_port( |
$port)
|
string $port |
function set_query( |
$query)
|
string $query |
function set_scheme( |
$scheme)
|
string $scheme |
function set_userinfo( |
$userinfo)
|
string $userinfo |