(PHP 4, PHP 5, PHP 7)
rawurldecode — Decode URL-encoded strings
rawurldecode ( string $str ) : string
Returns a string in which the sequences with percent (%
) signs followed by two hex digits have been replaced with literal characters.
str
The URL to be decoded.
Returns the decoded URL, as a string.
Example #1 rawurldecode() example
<?php echo rawurldecode('foo%20bar%40baz'); // foo bar@baz ?>
Note:
rawurldecode() does not decode plus symbols ('+') into spaces. urldecode() does.
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/function.rawurldecode.php