mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-07-19 23:05:36 +08:00
8 lines
190 B
PHP
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']);
|