1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-08 16:17:20 +00:00
docker-php-extension-installer/scripts/tests/lz4
2022-06-16 16:36:44 +02:00

18 lines
419 B
PHP
Executable file

#!/usr/bin/env php
<?php
require_once __DIR__ . '/_bootstrap.php';
const ORIGINAL_DATA = 'Hi, there!';
$compressed = lz4_compress(ORIGINAL_DATA);
if (!is_string($compressed) || $compressed === '') {
fwrite(STDERR, 'lz4_compress() failed!');
exit(1);
}
$uncompressed = lz4_uncompress($compressed);
if ($uncompressed !== ORIGINAL_DATA) {
fwrite(STDERR, 'lz4_uncompress() failed!');
exit(1);
}
exit(0);