Files
static-php-cli/src/globals/ext-tests/msgpack.php
2024-09-17 22:34:57 +08:00

8 lines
190 B
PHP

<?php
declare(strict_types=1);
assert(function_exists('msgpack_pack'));
assert(function_exists('msgpack_unpack'));
assert(msgpack_unpack(msgpack_pack(['foo', 'bar'])) === ['foo', 'bar']);