SoapClient::__getTypes

(PHP 5, PHP 7, PHP 8)

SoapClient::__getTypesReturns a list of SOAP types

說(shuō)明

public SoapClient::__getTypes(): ?array

Returns an array of types described in the WSDL for the Web service.

注意:

此函數(shù)僅在 WSDL 模式下生效。

參數(shù)

此函數(shù)沒(méi)有參數(shù)。

返回值

The array of SOAP types, detailing all structures and types.

范例

示例 #1 SoapClient::__getTypes() example

<?php
$client 
= new SoapClient('http://soap.amazon.com/schemas3/AmazonWebServices.wsdl');
var_dump($client->__getTypes());
?>

以上例程會(huì)輸出:

array(88) {
  [0]=>
  string(30) "ProductLine ProductLineArray[]"
  [1]=>
  string(85) "struct ProductLine {
 string Mode;
 string RelevanceRank;
 ProductInfo ProductInfo;
}"
  [2]=>
  string(105) "struct ProductInfo {
 string TotalResults;
 string TotalPages;
 string ListName;
 DetailsArray Details;
}"
...
  [85]=>
  string(32) "ShortSummary ShortSummaryArray[]"
  [86]=>
  string(121) "struct GetTransactionDetailsRequest {
 string tag;
 string devtag;
 string key;
 OrderIdArray OrderIds;
 string locale;
}"
  [87]=>
  string(75) "struct GetTransactionDetailsResponse {
 ShortSummaryArray ShortSummaries;
}"
}

參見