Lines Matching refs:php
19 The code for FlatBuffers PHP library can be found at `flatbuffers/php`. You
21 GitHub page](https://github.com/google/flatbuffers/tree/master/php).
26 The test code itself is located in [phpTest.php](https://github.com/google/
27 flatbuffers/blob/master/tests/phpTest.php).
29 You can run the test with `php phpTest.php` from the command line.
32 [PHP](http://php.net/manual/en/install.php) to be installed.*
42 with the `--php` option to `flatc`. Then you can include both FlatBuffers and
50 ~~~{.php}
58 // Contains the `*.php` files for the FlatBuffers library and the `flatc` generated files.
59 $paths = array(join(DIRECTORY_SEPARATOR, array($root_dir, "php")),
62 $file = join(DIRECTORY_SEPARATOR, array($path, $class . ".php"));
81 ~~~{.php}