mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-03 06:45:39 +08:00
7 lines
117 B
PHP
7 lines
117 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
assert(function_exists('gzcompress'));
|
|
assert(gzdecode(gzencode('aaa')) === 'aaa');
|