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

8 lines
190 B
PHP
Raw Normal View History

2024-09-17 22:34:57 +08:00
<?php
declare(strict_types=1);
assert(function_exists('msgpack_pack'));
assert(function_exists('msgpack_unpack'));
assert(msgpack_unpack(msgpack_pack(['foo', 'bar'])) === ['foo', 'bar']);