mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-19 13:24:51 +08:00
9 lines
202 B
PHP
9 lines
202 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
$str = 'This is bz2 extension test';
|
|
assert(function_exists('bzdecompress'));
|
|
assert(function_exists('bzcompress'));
|
|
assert(bzdecompress(bzcompress($str, 9)) === $str);
|