A SOAP Client for the getGuid() Method : SOAP Client « Network « PHP






A SOAP Client for the getGuid() Method

 
<?php
  ini_set('soap.wsdl_cache_enabled', 'Off');

  $soap = new SoapClient('guid.wsdl');
  echo $soap->getGuid('PHP_');
?>
  
  








Related examples in the same category

1.A SOAP Client with Error Handling