mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-24 09:25:35 +08:00
9 lines
195 B
PHP
9 lines
195 B
PHP
|
|
<?php
|
|||
|
|
|
|||
|
|
declare(strict_types=1);
|
|||
|
|
|
|||
|
|
$str = 'Data you would like compressed.';
|
|||
|
|
assert(function_exists('xzencode'));
|
|||
|
|
assert(function_exists('xzdecode'));
|
|||
|
|
assert(xzdecode(xzencode($str)) === $str);
|