以下代码对我有用,虽然看起来 soap.amazon.com 已经过时并停止服务。 http://webservices.amazon.com 已取代 Amazon 的 SOAP。
<?php
$client = new SoapClient('http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl');
var_dump($client->__getFunctions());
?>
(PHP 5, PHP 7, PHP 8)
SoapClient::__getFunctions — 返回可用 SOAP 函数的列表
此函数没有参数。
SOAP 函数原型的 array,详细说明返回值类型、函数名称和参数类型。
示例 #1 SoapClient::__getFunctions() 示例
<?php
$client = new SoapClient('http://soap.amazon.com/schemas3/AmazonWebServices.wsdl');
var_dump($client->__getFunctions());
?>
上面的示例将输出
array(26) { [0]=> string(70) "ProductInfo KeywordSearchRequest(KeywordRequest $KeywordSearchRequest)" [1]=> string(79) "ProductInfo TextStreamSearchRequest(TextStreamRequest $TextStreamSearchRequest)" [2]=> string(64) "ProductInfo PowerSearchRequest(PowerRequest $PowerSearchRequest)" ... [23]=> string(107) "ShoppingCart RemoveShoppingCartItemsRequest(RemoveShoppingCartItemsRequest $RemoveShoppingCartItemsRequest)" [24]=> string(107) "ShoppingCart ModifyShoppingCartItemsRequest(ModifyShoppingCartItemsRequest $ModifyShoppingCartItemsRequest)" [25]=> string(118) "GetTransactionDetailsResponse GetTransactionDetailsRequest(GetTransactionDetailsRequest $GetTransactionDetailsRequest)" }
以下代码对我有用,虽然看起来 soap.amazon.com 已经过时并停止服务。 http://webservices.amazon.com 已取代 Amazon 的 SOAP。
<?php
$client = new SoapClient('http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl');
var_dump($client->__getFunctions());
?>
_getFunctions 可以返回 null,而不仅仅是数组。如果 WSDL 尚未解析,就会发生这种情况。这可能对调试的人员有所帮助,就像我在几分钟前编写 SoapClient 扩展时一样。