1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 21:41:22 +02:00
Files
archived-php-src/ext/zip/tests/bug11216.phpt
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

27 lines
511 B
PHP

--TEST--
Bug #11216 (::addEmptyDir() crashes when the directory already exists)
--EXTENSIONS--
zip
--FILE--
<?php
$archive = new ZipArchive();
$archive->open('__test.zip', ZIPARCHIVE::CREATE);
var_dump($archive->addEmptyDir('test'));
print_r($archive);
var_dump($archive->addEmptyDir('test'));
$archive->close();
unlink('__test.zip');
?>
--EXPECTF--
bool(true)
ZipArchive Object
(
[lastId] => 0
[status] => 0
[statusSys] => 0
[numFiles] => 1
[filename] => %s
[comment] =>
)
bool(false)