Files
static-php-cli/src/globals/ext-tests/xz.php

9 lines
195 B
PHP
Raw Normal View History

2025-06-05 16:42:52 +07:00
<?php
declare(strict_types=1);
$str = 'Data you would like compressed.';
assert(function_exists('xzencode'));
assert(function_exists('xzdecode'));
assert(xzdecode(xzencode($str)) === $str);