--TEST-- ZipArchive::addPattern() method --CREDITS-- Sammy Kaye Powers w/Kenzo over the shoulder #phptek Chicago 2014 --SKIPIF-- --FILE-- open($file)) { exit('failed'); } $dir = realpath($dirname); $options = array('add_path' => 'baz/', 'remove_path' => $dir); if (!$zip->addPattern('/\.txt$/', $dir, $options)) { echo "failed\n"; } if ($zip->status == ZIPARCHIVE::ER_OK) { dump_entries_name($zip); $zip->close(); } else { echo "failed\n"; } ?> --CLEAN-- --EXPECTF-- 0 bar 1 foobar/ 2 foobar/baz 3 entry1.txt 4 baz/bar.txt 5 baz/foo.txt