Lines Matching refs:FlatBuffers
6 Before diving into the FlatBuffers usage in PHP, it should be noted that
8 general FlatBuffers usage in all of the supported languages
10 FlatBuffers usage in PHP.
17 ## FlatBuffers PHP library code location
19 The code for FlatBuffers PHP library can be found at `flatbuffers/php`. You
20 can browse the library code on the [FlatBuffers
23 ## Testing the FlatBuffers JavaScript library
37 example of how to use FlatBuffers in PHP.*
39 FlatBuffers supports both reading and writing FlatBuffers in PHP.
41 To use FlatBuffers in your own code, first generate PHP classes from your schema
42 with the `--php` option to `flatc`. Then you can include both FlatBuffers and
51 // It is recommended that your use PSR autoload when using FlatBuffers in PHP.
58 // Contains the `*.php` files for the FlatBuffers library and the `flatc` generated files.