Fixed bug #52309 (Wrong description for examples of ZipArchive::extractTo)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@304623 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Kalle Sommer Nielsen 2010-10-22 14:13:03 +00:00
parent 29ab385baf
commit 4b560fc519
2 changed files with 1 additions and 13 deletions

View file

@ -49,12 +49,6 @@
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
This example opens a ZIP file archive, reads each file in the
archive and prints out its contents. The
<filename>test2.zip</filename> archive used in this example is
one of the test archives in the ZZIPlib source distribution.
</para>
<example>
<title>Extract all entries</title>
<programlisting role="php">
@ -73,7 +67,7 @@ if ($zip->open('test.zip') === TRUE) {
</programlisting>
</example>
<example>
<title>Extract only two entries</title>
<title>Extract two entries</title>
<programlisting role="php">
<![CDATA[
<?php

View file

@ -125,12 +125,6 @@
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
This example opens a ZIP file archive, reads each file in the
archive and prints out its contents. The
<filename>test2.zip</filename> archive used in this example is
one of the test archives in the ZZIPlib source distribution.
</para>
<example>
<title>Open and extract</title>
<programlisting role="php">