Query: rawurldecode
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
RAWURLDECODE(3) 1 RAWURLDECODE(3) rawurldecode - Decode URL-encoded stringsSYNOPSISstring rawurldecode (string $str)DESCRIPTIONReturns a string in which the sequences with percent ( %) signs followed by two hex digits have been replaced with literal characters.PARAMETERSo $str - The URL to be decoded.RETURN VALUESReturns the decoded URL, as a string.EXAMPLESExample #1 rawurldecode(3) example <?php echo rawurldecode('foo%20bar%40baz'); // foo bar@baz ?>NOTESNote rawurldecode(3) does not decode plus symbols ('+') into spaces. urldecode(3) does.SEE ALSOrawurlencode(3), urldecode(3), urlencode(3), RFC 3986. PHP Documentation Group RAWURLDECODE(3)
Related Man Pages |
---|
urlencode(1) - debian |
urldecode(3) - php |
fdf_save_string(3) - php |
addcslashes(3) - php |
urlencode(3) - php |
Similar Topics in the Unix Linux Community |
---|
how to urlencode a string? |