PHP/Web Services SOAP WSDL/WSDL

Материал из Web эксперт
Перейти к: навигация, поиск

Get function prototype from wsdl

   <source lang="html4strict">

<?php

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

?>

      </source>