(PHP 5 >= 5.0.1)
SoapClient::__getTypes — Returns a list of SOAP types
Returns an array of types described in the WSDL for the Web service.
Notă: Această funcție funcționează doar în modul WSDL.
Această funcție nu are parametri.
An array of SOAP types.
Example #1 SoapClient::__getTypes() example
<?php
$client = new SoapClient("some.wsdl");
var_dump($client->__getTypes());
?>