WSDL 模式
首先,创建一个新的 SoapClient
对象,将 URL 传递给 WSDL 文件,也可以选择一组选项。
// Create a new client object using a WSDL URL
$soap = new SoapClient('https://example.com/soap.wsdl', [
# This array and its values are optional
'soap_version' => SOAP_1_2,
'compression' => SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP,
'cache_wsdl' => WSDL_CACHE_BOTH,
# Helps with debugging
'trace' => TRUE,
'exceptions' => TRUE
]);
然后使用 $soap
对象来调用 SOAP 方法。
$result = $soap->requestData(['a', 'b', 'c']);