我不知道从哪里开始使用 PHP 5.2 中的 WSDL 和 SOAP?

发布于 2024-08-26 05:28:52 字数 184 浏览 3 评论 0原文

我是一个 Web 服务新手,我尝试在 google 中寻找教程来学习它...但我没有找到任何真正有用的东西...

你知道使用 PHP 的 Web 服务的任何教程/网页/文档吗5 原生SOAP 客户端?我需要实现一个 SOAP 客户端,用于从 IIS 服务器获取/发送数据(用于酒店预订)。

有一些服务器可以让我进行测试吗?

I'm a web services newbie and I've tried to learn it looking for tutorials in google... but I didn't found anything really helpfull...

Do you know any tutorial / web page / documentation for web services using PHP 5 native SOAP client? I need to implement a SOAP client for fetch/send data from a IIS server (for hotels reservations).

Is there some server that I can make tests with?

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

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

发布评论

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

评论(1

我是有多爱你 2024-09-02 05:28:52
<?php
$client = new SoapClient('http://mssoapinterop.org/asmx/WSDL/WSDLInteropTestRpcEncService.wsdl');
$result = $client->echoString('hello');
print_r($result);
?>
<?php
$client = new SoapClient('http://mssoapinterop.org/asmx/WSDL/WSDLInteropTestRpcEncService.wsdl');
$result = $client->echoString('hello');
print_r($result);
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文