我正在为Android和iOS编写应用程序,直到现在我们使用JSON在服务器和客户端应用程序之间传递数据。我们的服务器是用PHP编写的。现在我想把我们的实现转移到FlatBuffers
而不是JSON。
有人知道我是否可以使用PHP制作它们吗?我不是服务器开发人员所以我不知道它在服务器端是如何工作的。
答案 0 :(得分:1)
There currently is no FlatBuffers code generator for PHP, only C++/Java/C#/Go/Python. The flatc
command line tool however can convert a binary flatbuffer file to JSON for use with any language.
EDIT: a PHP implementation was just contributed to the project.
答案 1 :(得分:1)
是的,你可以用php制作它们。谷歌刚刚发布了一个php库。
项目网页上有一些资源。
您仍然需要C编译器来编译模式。如果你在Mac上,你可以使用brew install flatbuffers
(使用家庭酿造)安装它。