function sagHallo($begruessung) { return 'Hallo ' . $begruessung; } $options = array('uri' => 'http://la4ever.lima-city.de/soap/'); $SOAPServer = new SoapServer(null, $options); $SOAPServer->addFunction('sagHallo'); $SOAPServer->handle();