©
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
(PHP 5 >= 5.0.1)
SoapClient::__setLocation — Sets the location of the Web service to use
$new_location
] )Sets the endpoint URL that will be touched by following SOAP requests. This is equivalent to specifying the location option when constructing the SoapClient.
Note:
Calling this method is optional. The SoapClient uses the endpoint from the WSDL file by default.
new_location
The new endpoint URL.
The old endpoint URL.
Example #1 SoapClient::__setLocation() example
<?php
$client = new SoapClient ( 'http://example.com/webservice.php?wsdl' );
$client -> __setLocation ( 'http://www.somethirdparty.com' );
$old_location = $client -> __setLocation (); // unsets the location option
echo $old_location ;
?>
以上例程的输出类似于:
http://www.somethirdparty.com