SoapClient
PHP Manual

SoapClient::__getTypes

(PHP 5 >= 5.0.1)

SoapClient::__getTypesReturns a list of SOAP types

설명

public array SoapClient::__getTypes ( void )

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());
?>

참고


SoapClient
PHP Manual