Functions
URL functions
Extraction functions
The URL extraction functions extract components from HTTP URLs (or any valid URIs conforming to RFC 2396). The following syntax is supported:
The extracted components do not contain URI syntax separators
such as :
or ?
.
url_extract_fragment
Returns the fragment identifier from url
.
url_extract_host
Returns the host from url
.
url_extract_parameter
Returns the value of the first query string parameter named name
from url
. Parameter extraction is handled in the typical manner
as specified by RFC 1866.
url_extract_path
Returns the path from url
.
url_extract_port
Returns the port number from url
.
url_extract_protocol
Returns the protocol from url
:
url_extract_query
Returns the query string from url
.
Encoding functions
url_encode
Escapes value
by encoding it so that it can be safely included in
URL query parameter names and values:
- Alphanumeric characters are not encoded.
- The characters
.
,-
,*
and_
are not encoded. - The ASCII space character is encoded as
+
. - All other characters are converted to UTF-8 and the bytes are encoded
as the string
%XX
whereXX
is the uppercase hexadecimal value of the UTF-8 byte.
url_decode
Unescapes the URL encoded value
.
This function is the inverse of url_encode().