mirror of
https://github.com/php/php-src.git
synced 2024-12-13 03:44:17 +08:00
29 lines
548 B
PHP
29 lines
548 B
PHP
--TEST--
|
|
Bug #11216 (::addEmptyDir() crashes when the directory already exists)
|
|
--SKIPIF--
|
|
<?php
|
|
/* $Id$ */
|
|
if(!extension_loaded('zip')) die('skip');
|
|
?>
|
|
--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
|
|
(
|
|
[status] => 0
|
|
[statusSys] => 0
|
|
[numFiles] => 1
|
|
[filename] => %s
|
|
[comment] =>
|
|
)
|
|
bool(false)
|