allegro/php-protobuf is an open-source project on GitHub with 909 stars, written primarily in PHP. PHP Protobuf - Google's Protocol Buffers for PHP
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
Since Google's official Protocol Buffers supports PHP language, it's unjustifiable to maintain this project. Please refer to Protocol Buffers for PHP language support.
PHP Protobuf - Google's Protocol Buffers for PHP
Overview
Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. It might be used in file formats and RPC protocols.
PHP Protobuf is Google's Protocol Buffers implementation for PHP with a goal to provide high performance, including a protoc plugin to generate PHP classes from .proto files. The heavy-lifting (a parsing and a serialization) is done by a PHP extension.
Requirements
PHP 7.0 or above (for PHP 5 support refer to php5 branch)
Pear's Console_CommandLine (for the protoc plugin)
Google's protoc compiler version 2.6 or above
Getting started
Installation
Clone the source code
git clone https://github.com/allegro/php-protobuf
Go to the source code directory
cd php-protobuf
Build and install the PHP extension (follow instructions at php.net)
require_once 'Foo.php';
$foo = new Foo();
$foo->setBar(1);
$foo->setBaz('two');
$foo->appendSpam(3.0);
$foo->appendSpam(4.0);
Serialize a message to a string
$packed = $foo->serializeToString();
Parse a message from a string
$parsedFoo = new Foo();
try {
$parsedFoo->parseFromString($packed);
} catch (Exception $ex) {
die('Oops.. there is a bug in this example, ' . $ex->getMessage());
}
Let's see what we parsed out
$parsedFoo->dump();
It should produce output similar to the following:
-o out, --out=out - the destination directory for generated files (defaults to the current directory).
-I proto_path, --proto_path=proto_path - the directory in which to search for imports.
--protoc=protoc - the protoc compiler executable path.
-D define, --define=define - define a generator option (i.e. -Dnamespace='Foo\Bar\Baz').
Generator options
namespace - the namespace to be used by the generated PHP classes.
Message class
The classes generated during the compilation are PSR-0 compliant (each class is put into it's own file). If namespace generator option is not defined then a package name (if present) is used to create a namespace. If the package name is not set then a class is put into global space.
PHP Protobuf module implements ProtobufMessage class which encapsulates the protocol logic. A message compiled from a proto file extends this class providing message field descriptors. Based on these descriptors ProtobufMessage knows how to parse and serialize a message of a given type.
For each field a set of accessors is generated. The set of methods is different for single value fields (required / optional) and multi-value fields (repeated).
required / optional
get{FIELD}() // return a field value
has{FIELD}() // check whether a field is set
set{FIELD}($value) // set a field value to $value
repeated
append{FIELD}($value) // append $value to a field
clear{FIELD}() // empty field
get{FIELD}() // return an array of field values
getAt{FIELD}($index) // return a field value at $index index
getCount{FIELD}() // return a number of field values
has{FIELD}() // check whether a field is set
getIterator{FIELD}() // return an ArrayIterator
{FIELD} is a camel cased field name.
Enum
PHP does not natively support enum type. Hence enum is represented by the PHP integer type. For convenience enum is compiled to a class with set of constants corresponding to its possible values.
Type mapping
The range of available build-in PHP types poses some limitations. PHP does not support 64-bit positive integer type. Note that parsing big integer values might result in getting unexpected results.
Protocol Buffers types map to PHP types as follows (x86_64):
Not set value is represented by null type. To unset value just set its value to null.
Parsing
To parse message create a message class instance and call its parseFromString method passing it a serialized message. The errors encountered are signaled by throwing Exception. Exception message provides detailed explanation. Required fields not set are silently ignored.
$packed = /* serialized FooMessage */;
$foo = new FooMessage();
try {
$foo->parseFromString($packed);
} catch (Exception $ex) {
die('Parse error: ' . $e->getMessage());
}
$foo->dump(); // see what you got
Serialization
To serialize a message call serializeToString method. It returns a string containing protobuf-encoded message. The errors encountered are signaled by throwing Exception. Exception message provides detailed explanation. A required field not set triggers an error.
$foo = new FooMessage()
$foo->setBar(1);
try {
$packed = $foo->serializeToString();
} catch (Exception $ex) {
die 'Serialize error: ' . $e->getMessage();
}
/* do some cool stuff with protobuf-encoded $packed */
Debugging
There might be situations you need to investigate what an actual content of a given message is. What var_dump gives on a message instance is somewhat obscure.
The ProtobufMessage class comes with dump method which prints out a message content to the standard output. It takes one optional argument specifying whether you want to dump only set fields (by default it dumps only set fields). Pass false as an argument to dump all fields. Format it produces is similar to var_dump.
Alternatively you can use printDebugString() method which produces output in protocol buffers text format.
IDE Helper and Auto-Complete Support
To integrate this extension with your IDE (PhpStorm, Eclipse etc.) and get auto-complete support, simply include stubs\ProtobufMessage.php anywhere under your project root.
No homepage URL was recorded for allegro/php-protobuf in TopGit's last sync. The README tab above frequently contains screenshots and demo links, or check the repository description on GitHub.
Does allegro/php-protobuf have any tags?
TopGit's last sync did not record any GitHub topics for allegro/php-protobuf. GitHub topics appear in the right sidebar of a repository page; that's the authoritative place to check.
How active is development on allegro/php-protobuf?
The most recent commit recorded on allegro/php-protobuf was 5.6 years ago, based on the GitHub push timestamp. The repository has 263 forks — one of the better signals of community interest.
How many stars does allegro/php-protobuf have?
allegro/php-protobuf has 909 GitHub stars — refresh the page for the live number, or check github.com/allegro/php-protobuf. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
What language is allegro/php-protobuf written in?
allegro/php-protobuf is written primarily in PHP. GitHub's language field is based on the largest share of bytes in the default branch.
What license does allegro/php-protobuf use?
allegro/php-protobuf is released under the Apache-2.0 license. Always verify the LICENSE file directly on GitHub for the authoritative terms — license strings can be edited out of sync with a project's actual stance.
Where do I read more about allegro/php-protobuf?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/allegro/php-protobuf is the definitive source.
Read full README in the tab above.
Still deciding about php-protobuf?
One click hands the question to an AI along with this page — see what it says about php-protobuf.