wp-includes/Requests/IRI.php
Lines:
1 to 44 of 44
<?php /** * IRI parser/serialiser/normaliser * * @package Requests * @subpackage Utilities */ /* class Requests_IRI */ /* function Requests_IRI::__toString() – Return the entire IRI when you try and read the object as a string */ /* function Requests_IRI::__set() – Overload __set() to provide access via properties */ /* function Requests_IRI::__get() – Overload __get() to provide access via properties */ /* function Requests_IRI::__isset() – Overload __isset() to provide access via properties */ /* function Requests_IRI::__unset() – Overload __unset() to provide access via properties */ /* function Requests_IRI::__construct() – Create a new IRI object, from a specified string */ /* function Requests_IRI::absolutize() – Create a new IRI object by resolving a relative IRI */ /* function Requests_IRI::parse_iri() – Parse an IRI into scheme/authority/path/query/fragment segments */ /* function Requests_IRI::remove_dot_segments() – Remove dot segments from a path */ /* function Requests_IRI::replace_invalid_with_pct_encoding() – Replace invalid character with percent encoding */ /* function Requests_IRI::remove_iunreserved_percent_encoded() – Callback function for preg_replace_callback. */ /* function Requests_IRI::scheme_normalization() – */ /* function Requests_IRI::is_valid() – Check if the object represents a valid IRI. This needs to be done on each call as some things change depending on another part of the IRI. */ /* function Requests_IRI::set_iri() – Set the entire IRI. Returns true on success, false on failure (if there are any invalid characters). */ /* function Requests_IRI::set_scheme() – Set the scheme. Returns true on success, false on failure (if there are any invalid characters). */ /* function Requests_IRI::set_authority() – Set the authority. Returns true on success, false on failure (if there are any invalid characters). */ /* function Requests_IRI::set_userinfo() – Set the iuserinfo. */ /* function Requests_IRI::set_host() – Set the ihost. Returns true on success, false on failure (if there are any invalid characters). */ /* function Requests_IRI::set_port() – Set the port. Returns true on success, false on failure (if there are any invalid characters). */ /* function Requests_IRI::set_path() – Set the ipath. */ /* function Requests_IRI::set_query() – Set the iquery. */ /* function Requests_IRI::set_fragment() – Set the ifragment. */ /* function Requests_IRI::to_uri() – Convert an IRI to a URI (or parts thereof) */ /* function Requests_IRI::get_iri() – Get the complete IRI */ /* function Requests_IRI::get_uri() – Get the complete URI */ /* function Requests_IRI::get_iauthority() – Get the complete iauthority */ /* function Requests_IRI::get_authority() – Get the complete authority */