PHP 客户端与 Apache Thrift API 进行通信
我是一名 PHP 开发人员,正在开发一个将使用 Apache Thrift API 与另一台服务器进行通信的网站,因此我想知道是否有一些现有的类或某种方式可以用来与 PHP 中的 Thrift API 进行通信。我看到用 Python 编写的使用 Tsocket 的示例,但我不知道 PHP 是否有 Tsocket 类。因此,如果有人完成了这样的工作,那么请发布一些示例或介绍一些我可以用来在 PHP 中实现 Thrift API 客户端的类。
预先感谢大家的努力。
I am a PHP developer, working on a site that will be communicating with another server with Apache Thrift API, so I want to know that is there some existing class or some way that I can use to communicate with Thrift API in PHP. I saw example written in Python that use Tsocket but I don't know whether PHP has Tsocket class or not. So if some one have done such work then please post some sample or tell about some class that I can use to implement thrift API client in PHP.
thanks in advance for everyone's effort.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如评论中所发布的,您应该使用 fsockopen,因为它提供了对套接字的低级访问,就像 python 一样TSocket。
As posted in a comment, you should use fsockopen, as it provides a low-level access to sockets, just like pythons TSocket.