Url decode: Difference between revisions
Jump to navigation
Jump to search
imported>Bale mNo edit summary |
imported>Ulti see also should be mentioning entity_encode and entity_decode |
||
Line 19: | Line 19: | ||
needscode=yes| | needscode=yes| | ||
see_also={{SeeAlso|to_url|url_encode}}| | see_also={{SeeAlso|to_url|url_encode|entity_encode|entity_decode}}| | ||
more_info=See the w3c page [http://www.w3schools.com/tags/ref_urlencode.asp here] for more info.| | more_info=See the w3c page [http://www.w3schools.com/tags/ref_urlencode.asp here] for more info.| | ||
special=String converted by this function can be returned to their original form with [[url_encode|url_encode()]].| | special=String converted by this function can be returned to their original form with [[url_encode|url_encode()]].| |
Revision as of 16:54, 14 October 2014
needs(code_samples);
Function Syntax
string url_decode(string source )
- source is the original to decode
Returns the "normal" version of the supplied source string with all URI-encoded escape sequences replaced with non-alphanumeric characters. For example, "+" characters are replaced with spaces and all instances of "%" followed by a two-digit (hexadecimal) character code are replaced with their corresponding non-alphanumeric characters.
See Also
More Information
See the w3c page here for more info.
Special
String converted by this function can be returned to their original form with url_encode().