ref: 61df0db1b2af339a5866069a9ab0cdf68b4d0446
converter/server/vendor/rybakit/msgpack/examples/binary.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 |
<?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\Binary; use MessagePack\TypeTransformer\BinaryTransformer; require __DIR__.'/autoload.php'; // https://stackoverflow.com/questions/40808984/msgpack-between-php-and-javascript $packer = new Packer(PackOptions::FORCE_STR); $packer->registerTransformer(new BinaryTransformer()); $packed = $packer->pack(['name' => new Binary('value')]); echo '[', implode(', ', unpack('C*', $packed)), "]\n"; /* OUTPUT [129, 164, 110, 97, 109, 101, 196, 5, 118, 97, 108, 117, 101] */ |