SoapClient
PHP Manual

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.

Замечание:

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.

Примеры

Пример #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

Смотрите также


SoapClient
PHP Manual