1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 08:58:28 +02:00
Files
archived-php-src/ext/phar/tests/phar_get_supportedcomp2.phpt
T
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

19 lines
298 B
PHP

--TEST--
Phar::getSupportedCompression() (bz2 only)
--EXTENSIONS--
phar
bz2
--SKIPIF--
<?php if (extension_loaded("zlib")) die("skip zlib is available"); ?>
--INI--
phar.require_hash=0
--FILE--
<?php
var_dump(Phar::getSupportedCompression());
?>
--EXPECT--
array(1) {
[0]=>
string(5) "BZIP2"
}