mirror of
https://github.com/php/php-src.git
synced 2026-04-22 23:48:14 +02:00
f4b0b32e2d
If Zip operations fails due to PHP error conditions before libzip even has been called, there is no meaningful indication what failed; the functions just return false, and the Zip status indicated that no error did occur. Therefore we raise `E_WARNING` in these cases. Closes GH-6356.
46 lines
803 B
PHP
46 lines
803 B
PHP
--TEST--
|
|
Bug #64342 ZipArchive::addFile() has to check file existence (variation 1)
|
|
--SKIPIF--
|
|
<?php
|
|
if(!extension_loaded('zip')) die('skip');
|
|
?>
|
|
--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
|