(PHP) SoapClient 类的对象无法转换为字符串

发布于 2024-07-09 21:23:21 字数 473 浏览 7 评论 0原文

这段代码工作正常:


$result = $client->__call("optionalInfo", array(
    new SoapParam("...", "client"),
    new SoapParam("...", "add_code"))
);

当我尝试对其进行抽象以使脚本可重用时,我收到此错误:

可捕获的致命错误:类 SoapClient 的对象无法转换为字符串

损坏的代码是:



$params = array( new SoapParam($client, "client"),
             new SoapParam($add_code, "add_code")
);
$result = $client->__call($functionName, $params);

最后一行是什么导致问题。

This code works fine:


$result = $client->__call("optionalInfo", array(
    new SoapParam("...", "client"),
    new SoapParam("...", "add_code"))
);

When I try abstracting it a bit to make the script re-usable, I get this error:

Catchable fatal error: Object of class SoapClient could not be converted to string

The broken code is:



$params = array( new SoapParam($client, "client"),
             new SoapParam($add_code, "add_code")
);
$result = $client->__call($functionName, $params);

The last line is what is causing the problem.

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

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

发布评论

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

评论(1

颜漓半夏 2024-07-16 21:23:21

您确定要将 SoapClient 接口作为参数发送到同一对象上的函数调用吗?

new SoapParam($client, "client")

Are you sure you want to send the SoapClient interface as an argument to a function call on the same object?

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