mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
19 lines
298 B
PHP
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"
|
|
}
|