php-src/ext/zip/tests/oo_getstatusstring.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
577 B
PHP

--TEST--
This test will test getStatusString method in ZipArchive
--CREDITS--
Ole-Petter Wikene <olepw@redpill-linpro.com>
#PHPTestFest2009 Norway 2009-06-09 \o/
--EXTENSIONS--
zip
--FILE--
<?php
$dirname = __DIR__ . '/';
$arch = new ZipArchive;
$arch->open($dirname.'foo.zip',ZIPARCHIVE::CREATE);
var_dump($arch->getStatusString());
//delete an index that does not exist - trigger error
$arch->deleteIndex(2);
var_dump($arch->getStatusString());
$arch->close();
?>
--CLEAN--
<?php
unlink($dirname.'foo.zip');
?>
--EXPECT--
string(8) "No error"
string(16) "Invalid argument"