所用資源:https://github.com/allegro/php-protobuf/php
進入解壓目錄執行: phpizegit
./configuregithub
makeweb
make installapp
# please add following line to your php.inicurl
extension=protobuf.soui
重啓PHPthis
phpinfo() 就能夠看到 protobuff擴展url
如何使用?spa
保存
首先建方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數據