我是这个 PHP SOAP 的新手。(SoapClient)
我有点困惑何时使用以及何时使用我从中获得的功能_soapCall();
_getFunctions();
我得到的回应 __getFunctions()
EstimationResponse
Estimation(Estimation $parameters)
什么是正确的?
$client->__soapCall("Estimation", $params);
或者
$client->Estimation($parameters);
我都尝试了但没有结果或 NULL 我什么时候可以使用什么?
谢谢