gpt4 book ai didi

ASP.NET 中 MSSOAP.SoapClient30 的 PHP 替代方案

转载 作者:行者123 更新时间:2023-12-04 06:52:08 25 4
gpt4 key购买 nike

有人可以帮助我 - 我需要一些提示或代码来连接到 wsdl 服务,发送 XML 请求,然后在客户端打印响应。我只有用 ASP.NET 编写的入门书,需要 PHP 替代品:

function doXMLRequest(Xmltext)
Set oSOAP = Server.CreateObject("MSSOAP.SoapClient30")
oSOAP.ClientProperty("ServerHTTPRequest") = True
oSOAP.mssoapinit sys_xmlservice, "", "", ""
oSOAP.ConnectorProperty("Timeout") = 600000
myXMLResponse = oSOAP.XMLReq(XmlText)
doXMLRequest=myXMLResponse
set oSOAP=nothing
end function

提前致谢! :)

最佳答案

使用 SOAPClient 类

$client = new SoapClient();
$response = $client->SomeSOAPFunction($args);

如果你想要一个函数 where SomeSOAPFunction是函数的参数:
function xml($fct) {
$client = new SoapClient();
$response = $client->{$fct}($args);
}

它应该工作

关于ASP.NET 中 MSSOAP.SoapClient30 的 PHP 替代方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2957437/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com