didou Wed Oct 22 07:57:43 2003 EDT
Modified files:
/phpdoc/en/reference/url/functions rawurldecode.xml
Log:
make the example looks like a true example
adding an and to the see also
this close the need for examples in referenece/url/
only 2160 functions remaining.. :'/
Index: phpdoc/en/reference/url/functions/rawurldecode.xml
diff -u phpdoc/en/reference/url/functions/rawurldecode.xml:1.3
phpdoc/en/reference/url/functions/rawurldecode.xml:1.4
--- phpdoc/en/reference/url/functions/rawurldecode.xml:1.3 Mon Jun 16 16:11:10
2003
+++ phpdoc/en/reference/url/functions/rawurldecode.xml Wed Oct 22 07:57:43 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/url.xml, last change in rev 1.6 -->
<refentry id="function.rawurldecode">
<refnamediv>
@@ -15,9 +15,21 @@
<para>
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
- <literal>foo%20bar%40baz</literal> decodes into <literal>foo
- [EMAIL PROTECTED]</literal>.
+ replaced with literal characters.
+ </para>
+ <para>
+ <example>
+ <title><function>rawurldecode</function> example</title>
+ <programlisting role="php">
+<![CDATA[
+<?php
+
+echo rawurldecode('foo%20bar%40baz'); // foo [EMAIL PROTECTED]
+
+?>
+]]>
+ </programlisting>
+ </example>
</para>
<note>
<para>
@@ -27,7 +39,7 @@
</note>
<simpara>
See also <function>rawurlencode</function>,
- <function>urldecode</function>,
+ <function>urldecode</function> and
<function>urlencode</function>.
</simpara>
</refsect1>