mirror of
https://github.com/php/php-src.git
synced 2024-12-12 19:33:31 +08:00
02e4d7a290
* pull-request/341: (23 commits) typofixes
38 lines
667 B
PHP
38 lines
667 B
PHP
--TEST--
|
|
Bug #64342 ZipArchive::addFile() has to check file existence (variation 2)
|
|
--SKIPIF--
|
|
<?php
|
|
/* $Id$ */
|
|
if(!extension_loaded('zip')) die('skip');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$dirname = dirname(__FILE__) . '/';
|
|
include $dirname . 'utils.inc';
|
|
$file = $dirname . '__tmp_oo_addfile.zip';
|
|
|
|
copy($dirname . 'test.zip', $file);
|
|
|
|
$zip = new ZipArchive;
|
|
if (!$zip->open($file)) {
|
|
exit('failed');
|
|
}
|
|
if (!$zip->addFile($dirname . 'cant_find_me.txt', 'test.php')) {
|
|
echo "failed\n";
|
|
}
|
|
if ($zip->status == ZIPARCHIVE::ER_OK) {
|
|
dump_entries_name($zip);
|
|
$zip->close();
|
|
} else {
|
|
echo "failed\n";
|
|
}
|
|
@unlink($file);
|
|
?>
|
|
--EXPECTF--
|
|
failed
|
|
0 bar
|
|
1 foobar/
|
|
2 foobar/baz
|
|
3 entry1.txt
|