2023-04-03 20:51:02 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
$str = 'This is bz2 extension test';
|
2023-04-30 15:43:08 +08:00
|
|
|
assert(function_exists('bzdecompress'));
|
|
|
|
|
assert(function_exists('bzcompress'));
|
|
|
|
|
assert(bzdecompress(bzcompress($str, 9)) === $str);
|