rawurldecode: incorporate user note, fix formatting of example output

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@65784 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
jim winstead 2001-12-20 22:19:32 +00:00
parent e8111658d4
commit 68654b8558

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.24 $ -->
<!-- $Revision: 1.25 $ -->
<reference id="ref.url">
<title>URL Functions</title>
<titleabbrev>URLs</titleabbrev>
@ -102,9 +102,14 @@
Returns a string in which the sequences with percent
(<literal>%</literal>) signs followed by two hex digits have been
replaced with literal characters. For example, the string
<screen>foo%20bar%40baz</screen> decodes into <screen>foo
bar@baz</screen>.
<screen>foo%20bar%40baz</screen> decodes into <screen>foo bar@baz</screen>.
</para>
<note>
<para>
<function>rawurldecode</function> does not decode plus symbols ('+')
into spaces. <function>urldecode</function> does.
</para>
</note>
<simpara>
See also <function>rawurlencode</function>,
<function>urldecode</function>,