Mega Code Archive

 
Categories / Php / Web Services SOAP WSDL
 

Get function prototype from wsdl

<?php    $ws = "http://www.xmethods.net/sd/2001/TemperatureService.wsdl";    $client = new SoapClient($ws);    var_dump($client->__getFunctions()); ?>