standard.net.curl.curl_unescape

curl_unescape is available since version 1.0.

Prototype:

string curl_unescape(string url)

Parameters

url
the encoded url

Description:

URL decodes the given string.
This function will convert the given URL encoded input string to a "plain string" and return that as a new allocated string. All input characters that are URL encoded (%XX where XX is a two-digit hexadecimal number) will be converted to their plain text versions.

Return value:

Returns the decoded string.