SoapClient::__getFunctions

(PHP 5, PHP 7, PHP 8)

SoapClient::__getFunctions返回可用 SOAP 函数的列表

描述

public SoapClient::__getFunctions(): ?array

返回 Web 服务 WSDL 中描述的函数数组。

注意:

此函数仅在 WSDL 模式下有效。

参数

此函数没有参数。

返回值

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)"
}

参见

添加注释

用户贡献的注释 3 个注释

Beebs
10 年前
以下代码对我有用,虽然看起来 soap.amazon.com 已经过时并停止服务。 http://webservices.amazon.com 已取代 Amazon 的 SOAP。

<?php
$client
= new SoapClient('http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl');
var_dump($client->__getFunctions());
?>
hasegeli at arebt dot com
15 年前
如果模式不在 wsdl 文件中,此函数不起作用。
jvanoort at simplexis dot nl
8 年前
_getFunctions 可以返回 null,而不仅仅是数组。如果 WSDL 尚未解析,就会发生这种情况。这可能对调试的人员有所帮助,就像我在几分钟前编写 SoapClient 扩展时一样。
To Top