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

7.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);
		
		
comments powered by Disqus