update : 2015.11.03
php.shukuma.com

검색:
 
 
Sets the location of the Web service to use

SoapClient::__setLocation

(PHP 5 >= 5.0.1)

SoapClient::__setLocationSets the location of the Web service to use

설명

public string SoapClient::__setLocation ([ string $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

참고