The SOAP Server for the getGuid() Method : SOAP Server « Network « PHP
- PHP
- Network
- SOAP Server
The SOAP Server for the getGuid() Method
<?php
ini_set('soap.wsdl_cache_enabled', 'Off');
function getGuid($prefix) {
return uniqid($prefix);
}
$soap = new SoapServer('guid.wsdl');
$soap->addFunction('getGuid');
$soap->handle();
?>
Related examples in the same category