SoapClient
PHP Manual

SoapClient::__getTypes

(PHP 5 >= 5.0.1)

SoapClient::__getTypesReturns a list of SOAP types

Descrierea

public array SoapClient::__getTypes ( void )

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

Notă: Această funcție funcționează doar în modul WSDL.

Parametri

Această funcție nu are parametri.

Valorile întoarse

An array of SOAP types.

Exemple

Example #1 SoapClient::__getTypes() example

<?php
$client 
= new SoapClient("some.wsdl");
var_dump($client->__getTypes());
?>

Vedeți de asemenea


SoapClient
PHP Manual