Fixed #46940 (missing semicolon in example)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@271881 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Kalle Sommer Nielsen 2008-12-25 19:58:59 +00:00
parent d24b4a47ab
commit f95b2ae82c

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<refentry xml:id="function.ziparchive-open" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>ZipArchive::open</refname>
@ -137,7 +137,7 @@
<![CDATA[
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip')
$res = $zip->open('test.zip');
if ($res === TRUE) {
echo 'ok';
$zip->extractTo('test');