nlopess Fri Sep 22 15:39:56 2006 UTC
Modified files: /phpdoc/en/appendices wrappers.xml Log: arg.. add missing words from last commit. also obfuscate the example :) http://cvs.php.net/viewvc.cgi/phpdoc/en/appendices/wrappers.xml?r1=1.63&r2=1.64&diff_format=u Index: phpdoc/en/appendices/wrappers.xml diff -u phpdoc/en/appendices/wrappers.xml:1.63 phpdoc/en/appendices/wrappers.xml:1.64 --- phpdoc/en/appendices/wrappers.xml:1.63 Fri Sep 22 15:36:16 2006 +++ phpdoc/en/appendices/wrappers.xml Fri Sep 22 15:39:56 2006 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.63 $ --> +<!-- $Revision: 1.64 $ --> <appendix id="wrappers"> <title>List of Supported Protocols/Wrappers</title> <para> @@ -894,7 +894,7 @@ <title>Data (RFC 2397)</title> <simpara> The <filename>data:</filename> (<ulink url="&url.rfc;2397">RFC - 2397</ulink>) is available since PHP 5.2.0. + 2397</ulink>) stream wrapper is available since PHP 5.2.0. </simpara> <example> @@ -903,7 +903,7 @@ <![CDATA[ <?php // prints "I love PHP" -echo file_get_contents('data://text/plain;base64,' . base64_encode("I love PHP\n")); +echo file_get_contents('data://text/plain;base64,SSBsb3ZlIFBIUAo='); ?> ]]> </programlisting>