mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-07 08:45:40 +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);
|