Javascript debugger Website design ↑
Returns a string in which the sequences with percent (%) signs followed by two hex digits have been replaced with literal characters.
%
The URL to be decoded.
Returns the decoded URL, as a string.
<?php echo rawurldecode('foo%20bar%40baz'); // foo bar@baz ?>
rawurldecode() does not decode plus symbols ('+') into spaces. urldecode() does.
Javascript debugger Website design