(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.
Note: 이 함수는 WSDL 모드에서만 작동합니다.
이 함수는 인수가 없습니다.
An array of SOAP types.
Example #1 SoapClient::__getTypes() example
<?php
$client = new SoapClient("some.wsdl");
var_dump($client->__getTypes());
?>