diff options
Diffstat (limited to 'ext/zip/examples/addglob.php')
-rw-r--r-- | ext/zip/examples/addglob.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/zip/examples/addglob.php b/ext/zip/examples/addglob.php index 3c432f0be5..13ea83b02a 100644 --- a/ext/zip/examples/addglob.php +++ b/ext/zip/examples/addglob.php @@ -5,8 +5,8 @@ $z->open('a.zip', ZIPARCHIVE::CREATE); /* or 'remove_all_path' => 0*/ $options = array( - 'remove_path' => '/home/francis/myimages', - 'add_path' => 'images/', + 'remove_path' => '/home/francis/myimages', + 'add_path' => 'images/', ); $found = $z->addGlob("/home/pierre/cvs/gd/libgd/tests/*.png", 0, $options); var_dump($found); |