git clone https://github.com/msgpack/msgpack-php.git cd msgpack-php phpize ./configure && make && make install $data = array(0=>1,1=>2,2=>3); $msg = msgpack_pack($data); $data = msgpack_unpack($msg);