(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.
Замечание: This function only works in WSDL mode.
This function has no parameters.
An array of SOAP types.
Пример #1 SoapClient::__getTypes() example
<?php
$client = new SoapClient("some.wsdl");
var_dump($client->__getTypes());
?>