Get function prototype from wsdl : WSDL « Web Services SOAP WSDL « PHP






Get function prototype from wsdl


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

           
       








Related examples in the same category