Home | Mirror | SearchITEYE 博客 | OSChina 博客 | 51CTO 博客

19.21. msgpack

		
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);