如何结合 php、WSDL、PHP?

发布于 2024-12-11 06:51:36 字数 499 浏览 0 评论 0原文

我对这些东西太像新手了……我现在拥有的……是肥皂和C++程序,在用户输入一个人的名字后输出一个手机号码。还生成了 wsdl 文件。

  { "John",     "123" },
  { "Michael",  "111" },
  { "Saras",     "324" },
  { "Grace",     "12312" },

现在我试图在 html 上实现这一点,那么第一件事就是尝试用 php 实现这一点,对吗? 比如说,我用输入 John 硬编码了 php,每当我在浏览器上打开这个 php 时,它总是显示 123...是否有任何函数可以直接桥接 php 和soap?或者带有 wsdl 的 php?我从这里有点迷失...需要一些灵感:

例如,C++ 程序具有获取手机号码的功能

   int test__getMobile(struct soap * soap, char * user, char ** mobile_num)

Im soooo like newbie to those things....what i have now..is soap and c++ program that out put a mobile phone number after user input a person's name. and wsdl file are also generated.

  { "John",     "123" },
  { "Michael",  "111" },
  { "Saras",     "324" },
  { "Grace",     "12312" },

now im trying to achieve this on a html, well first thing is try achieve this with php right?
say for example i hard coded php with input John and it will always display 123 whenever i open this php on a browser...is there any function that can directly bridge php and soap? or php with wsdl? im a bit lost from here...need some inspiration :

c++ program has the function to get mobile phone number for example

   int test__getMobile(struct soap * soap, char * user, char ** mobile_num)

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

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

发布评论

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

评论(1

你的心境我的脸 2024-12-18 06:51:36

PHP 支持客户端和服务器的 SOAP: http://us.php.net /manual/en/book.soap.php

但是,从描述来看,你的问题并不清楚。 C++代码的作用是什么?您是否正在尝试在 PHP 中实现 C++ 代码可以使用的 SOAP 服务器?

请编辑问题而不是添加答案或评论。 SO不是论坛。

PHP supports SOAP both for clients and for servers: http://us.php.net/manual/en/book.soap.php

However, from the description, your problem is not clear. What's the role of the C++ code? Are you trying to implement a SOAP server in PHP that C++ code would consume?

Please edit the question rather than adding answers or comments. SO is not a forum.

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