所用资源:https://github.com/allegro/php-protobuf/
进入解压目录执行: phpize
./configure
make
make install
# please add following line to your php.ini
extension=protobuf.so
重启php
phpinfo() 就可以看到 protobuff扩展
如何使用?
保存
首先建方proto文件 foo.proto文件
message phonenumber {
required string number = 1;
required int32 type = 2;
}
message person {
required string name = 1;
required int32 id = 2;
optional string email = 3;
repeated phonenumber phone = 4;
}
message addressbook {
repeated person person = 1;
}
然后用命令生成
php protoc-php.php foo.proto
这时候会生成一个pb_proto_foo.php文件
下面具体就应用 。
假如与java通信。protobuffer 保存php文件test.php如:
require_once 'pb_proto_test.php';
$packed = curlget('http://10.0.247.113:8080/testweb/proto'); //此处是java返回的buffer信息
$foo = new addressbook();
try {
$foo->parsefromstring($packed);
} catch (exception $ex) {
die('parse error: ' . $e->getmessage());
}
$pb = $foo->getperson();
//print_r($pb);
//print_r($pb[0]);
echo $pb[0]->getname() .' _ '.$pb[0]->getid() .' _ ';
print_r($pb[0]->getphone());
php调用修改buffer数据
----------------------------
require_once 'pb_proto_test.php';
$foo = new person();
$foo->setname('xiaojh');
$foo->setid(200);
$foo->setemail('dofound@163.com');
//$foo->appendphone(2);
$packed = $foo->serializetostring();
$foo->clear();
try {
$xiao = $foo->parsefromstring($packed);
//print_r($xiao);
} catch (exception $ex) {
die('upss.. there is a bug in this example');
}
echo $foo->getname();
echo $foo->getphone()->number;
$foo->dump();
php内部调用
------------------------------
生成buffer数据