基于 PHP 的 thrift API 客户端,例如 thirft.apache.org python 中的示例客户端

发布于 2024-12-17 14:32:40 字数 770 浏览 2 评论 0原文

我想用 python 编写基于 PHP 的 thrift API 客户端,例如 thirft.apache.org 示例客户端: http://thrift.apache .org/

我写了这段代码:

      //A struture
      $up = UserProfile($uid=1,
             $name="Mark Slee",
             $blurb="I'll find something to put here.");

      # Talk to a server via TCP sockets, using a binary protocol
      $fp = fsockopen("localhost",9090, $errno, $errstr, 90);
      # Use the service we already defined
      $service=fwrite($fp, $up);

      while (!feof($fp)) {
          echo fgets($fp, 128);
      }

那么它是 python 客户端代码的正确替代吗: http://thrift.apache.org/

请给出任何建议,因为我是新手。

谢谢

I want to write PHP based thrift API client like thirft.apache.org example client in python at: http://thrift.apache.org/

I write this code:

      //A struture
      $up = UserProfile($uid=1,
             $name="Mark Slee",
             $blurb="I'll find something to put here.");

      # Talk to a server via TCP sockets, using a binary protocol
      $fp = fsockopen("localhost",9090, $errno, $errstr, 90);
      # Use the service we already defined
      $service=fwrite($fp, $up);

      while (!feof($fp)) {
          echo fgets($fp, 128);
      }

so is it correct alternative of python client code at : http://thrift.apache.org/

Please give any suggestion as I am new to it.

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗藏城府 2024-12-24 14:32:40

查看 Thrift WikiThrift 使用 页面。其中有许多受支持语言的示例,特别是,有一个 PHP 示例客户端

Look in the Thrift Wiki at the Thrift Usage page. That has examples in many supported languages, in particular, there's an example client in PHP.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文