Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><a href="http://code.google.com/p/pb4php/#Protocol_Buffer_for_PHP">Protocol_Buffer_for_PHP</a></p> <p>Last updated in May 2009</p> <p>Implementing the Google "Protocol Buffer" for PHP, include parsing ... </p> <p>Issue list: <a href="http://code.google.com/p/pb4php/issues/list">http://code.google.com/p/pb4php/issues/list</a></p> <p><a href="https://github.com/drslump/Protobuf-PHP">Protobuf-PHP</a> </p> <p>Last updated in April 2011</p> <p>Protobuf for PHP is an implementation of Google's Protocol Buffers for the PHP language, supporting its binary data serialization and including a protoc plugin to generate PHP classes from .proto files.</p> <p>Great effort has been put into generating PHP files that include all sort of type hints to aide IDE's with autocompletion. Therefore, it can not only be used to communicate with Protocol Buffers services but also as a generation tool for data objects no matter what the final serialization is.</p> <p>Example:</p> <pre><code>$person = new Tutorial\Person(); $person-&gt;name = 'DrSlump'; $person-&gt;setId(12); $book = new Tutorial\AddressBook(); $book-&gt;addPerson($person); // Use default codec $data = $book-&gt;serialize(); // Use custom codec $codec = new \DrSlump\Protobuf\Codec\Binary(); $data = $codec-&gt;encode($book); // ... or ... $data = $book-&gt;serialize($codec); </code></pre> <p><a href="https://github.com/bramp/protoc-gen-php">protoc-gen-php</a></p> <p>Last updated December 05, 2010</p> <p>This is a PHP Google Protocol Buffer Generator Plugin for protoc. It generates PHP code from a .proto file.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload