ref: 702d0c50df8e74b3d227121e00ff73a9004567ff
converter/server/vendor/rybakit/msgpack/examples/map.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<?php /* * This file is part of the rybakit/msgpack.php package. * * (c) Eugene Leonovich <gen.work@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use MessagePack\Packer; use MessagePack\PackOptions; use MessagePack\Type\Map; use MessagePack\TypeTransformer\MapTransformer; require __DIR__.'/autoload.php'; $packer = new Packer(PackOptions::FORCE_ARR); $packer->registerTransformer(new MapTransformer()); $packedArray = $packer->pack([1, 2, 3]); $packedMap = $packer->pack(new Map([1, 2, 3])); printf("Packed array: %s\n", implode(' ', str_split(bin2hex($packedArray), 2))); printf("Packed map: %s\n", implode(' ', str_split(bin2hex($packedMap), 2))); /* OUTPUT Packed array: 93 01 02 03 Packed map: 83 00 01 01 02 02 03 */ |