The SOAP extension is a fast and fairly complete interface for creating and working with SOAP web-services.


<?php
// instantiate SOAP client object
$client = new SoapObject"http://example.com/soap_server.php",
                          
"urn:Object");
echo 
$client->version(); // call version() method
?>