|
Moodle
2.2.1
http://www.collinsharper.com
|
Public Member Functions | |
| __toString () | |
| __construct ($iri) | |
| parse_iri ($iri) | |
| remove_dot_segments ($input) | |
| replace_invalid_with_pct_encoding ($string, $valid_chars, $case=SIMPLEPIE_SAME_CASE) | |
| is_valid () | |
| set_scheme ($scheme) | |
| set_authority ($authority) | |
| set_userinfo ($userinfo) | |
| set_host ($host) | |
| set_port ($port) | |
| set_path ($path) | |
| set_query ($query) | |
| set_fragment ($fragment) | |
| get_iri () | |
| get_scheme () | |
| get_authority () | |
| get_userinfo () | |
| get_host () | |
| get_port () | |
| get_path () | |
| get_query () | |
| get_fragment () | |
Static Public Member Functions | |
| static | absolutize ($base, $relative) |
Data Fields | |
| $scheme | |
| $userinfo | |
| $host | |
| $port | |
| $path | |
| $query | |
| $fragment | |
| $valid = array() | |
Definition at line 11108 of file simplepie.class.php.
| __construct | ( | $ | iri | ) |
Create a new IRI object, from a specified string
public
| string | $iri |
Definition at line 11192 of file simplepie.class.php.
| __toString | ( | ) |
Return the entire IRI when you try and read the object as a string
public
Definition at line 11180 of file simplepie.class.php.
| static absolutize | ( | $ | base, |
| $ | relative | ||
| ) | [static] |
Create a new IRI object by resolving a relative IRI
public
| SimplePie_IRI | $base | Base IRI |
| string | $relative | Relative IRI |
Definition at line 11215 of file simplepie.class.php.

| get_authority | ( | ) |
Get the complete authority
public
Definition at line 11751 of file simplepie.class.php.
| get_fragment | ( | ) |
| get_host | ( | ) |
| get_iri | ( | ) |
| get_path | ( | ) |
| get_port | ( | ) |
| get_query | ( | ) |
| get_scheme | ( | ) |
| get_userinfo | ( | ) |
Get the user information
public
Definition at line 11783 of file simplepie.class.php.
| is_valid | ( | ) |
Check if the object represents a valid IRI
public
Definition at line 11450 of file simplepie.class.php.
| parse_iri | ( | $ | iri | ) |
Parse an IRI into scheme/authority/path/query/fragment segments
private
| string | $iri |
Definition at line 11294 of file simplepie.class.php.
| remove_dot_segments | ( | $ | input | ) |
Remove dot segments from a path
private
| string | $input |
Definition at line 11311 of file simplepie.class.php.
| replace_invalid_with_pct_encoding | ( | $ | string, |
| $ | valid_chars, | ||
| $ | case = SIMPLEPIE_SAME_CASE |
||
| ) |
Replace invalid character with percent encoding
private
| string | $string | Input string |
| string | $valid_chars | Valid characters |
| int | $case | Normalise case |
Definition at line 11374 of file simplepie.class.php.
| set_authority | ( | $ | authority | ) |
Set the authority. Returns true on success, false on failure (if there are any invalid characters).
public
| string | $authority |
Definition at line 11504 of file simplepie.class.php.
| set_fragment | ( | $ | fragment | ) |
Set the fragment.
public
| string | $fragment |
Definition at line 11680 of file simplepie.class.php.
| set_host | ( | $ | host | ) |
Set the host. Returns true on success, false on failure (if there are any invalid characters).
public
| string | $host |
Definition at line 11558 of file simplepie.class.php.
| set_path | ( | $ | path | ) |
Set the path.
public
| string | $path |
Definition at line 11626 of file simplepie.class.php.
| set_port | ( | $ | port | ) |
Set the port. Returns true on success, false on failure (if there are any invalid characters).
public
| string | $port |
Definition at line 11597 of file simplepie.class.php.
| set_query | ( | $ | query | ) |
Set the query.
public
| string | $query |
Definition at line 11659 of file simplepie.class.php.
| set_scheme | ( | $ | scheme | ) |
Set the scheme. Returns true on success, false on failure (if there are any invalid characters).
public
| string | $scheme |
Definition at line 11463 of file simplepie.class.php.
| set_userinfo | ( | $ | userinfo | ) |
Set the userinfo.
public
| string | $userinfo |
Definition at line 11536 of file simplepie.class.php.
| $fragment |
Definition at line 11164 of file simplepie.class.php.
| $host |
Definition at line 11132 of file simplepie.class.php.
| $path |
Definition at line 11148 of file simplepie.class.php.
| $port |
Definition at line 11140 of file simplepie.class.php.
| $query |
Definition at line 11156 of file simplepie.class.php.
| $scheme |
Definition at line 11116 of file simplepie.class.php.
| $userinfo |
Definition at line 11124 of file simplepie.class.php.
| $valid = array() |
Definition at line 11172 of file simplepie.class.php.