7 lines
117 B
PHP
Raw Normal View History

2023-03-19 01:16:54 +08:00
<?php
declare(strict_types=1);
2023-04-30 15:43:08 +08:00
assert(function_exists('gzcompress'));
2024-01-10 21:08:25 +08:00
assert(gzdecode(gzencode('aaa')) === 'aaa');