SoapClient::__setLocation

(PHP 5 >= 5.0.4, PHP 7, PHP 8)

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

Açıklama

publicSoapClient::__setLocation(?string$location = null): ?string

Sets the endpoint URL that will be touched by following SOAP requests. This is equivalent to specifying the location option when constructing the SoapClient.

Bilginize:

Calling this method is optional. The SoapClient uses the endpoint from the WSDL file by default.

Bağımsız Değişkenler

location

The new endpoint URL.

Dönen Değerler

The old endpoint URL.

Sürüm Bilgisi

Sürüm: Açıklama
8.0.3location is nullable now.

Örnekler

Örnek 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;

?>

Yukarıdaki örnek şuna benzer bir çıktı üretir:

http://www.somethirdparty.com

Ayrıca Bakınız

To Top