mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
e8111658d4
commit
68654b8558
1 changed files with 8 additions and 3 deletions
|
@ -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>,
|
||||
|
|
Loading…
Reference in a new issue