Add GLOB_BRACE skipif

This commit is contained in:
Nikita Popov 2020-08-05 20:09:15 +02:00
parent 069bd49b02
commit 0dda242bde

View file

@ -2,9 +2,9 @@
ZipArchive::addGlob() method with more compression and encryption ZipArchive::addGlob() method with more compression and encryption
--SKIPIF-- --SKIPIF--
<?php <?php
/* $Id$ */
if(!extension_loaded('zip')) die('skip'); if(!extension_loaded('zip')) die('skip');
if (!method_exists('ZipArchive', 'setEncryptionName')) die('skip encrytion not supported'); if (!method_exists('ZipArchive', 'setEncryptionName')) die('skip encrytion not supported');
if(!defined("GLOB_BRACE")) die ('skip requires GLOB_BRACE');
?> ?>
--FILE-- --FILE--
<?php <?php