1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 15:08:16 +02:00
Files
archived-php-src/ext/zip/tests/bug64342_0.phpt
T
Nikita Popov 7485978339 Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

44 lines
756 B
PHP

--TEST--
Bug #64342 ZipArchive::addFile() has to check file existence (variation 1)
--EXTENSIONS--
zip
--FILE--
<?php
$zip = new ZipArchive;
$res = $zip->open(__DIR__ . '/bug64342.zip', ZipArchive::CREATE);
if ($res === TRUE) {
$f = md5(uniqid()) . '.txt';
echo "$f\n";
$res = $zip->addFile($f);
if (true == $res) {
echo "add ok\n";
} else {
echo "add failed\n";
}
$res = $zip->close();
if (true == $res) {
echo "close ok\n";
} else {
echo "close failed\n";
}
} else {
echo "open failed\n";
}
?>
DONE
--CLEAN--
<?php
@unlink(__DIR__ . '/bug64342.zip');
?>
--EXPECTF--
%s.txt
Warning: ZipArchive::addFile(): No such file or directory in %s on line %d
add failed
close ok
DONE