Dutch PHP Conference 2025 - Call For Papers

SoapClient::__setLocation

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

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

Опис

public SoapClient::__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.

Зауваження:

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

Параметри

location

The new endpoint URL.

Значення, що повертаються

The old endpoint URL.

Журнал змін

Версія Опис
8.0.3 location is nullable now.

Приклади

Приклад #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

Прогляньте також

add a note

User Contributed Notes 1 note

up
0
maoneid at gmail dot com
6 years ago
for some cases , ignoring location from initialization throw exception

PHP Fatal error: Uncaught SoapFault exception: [HTTP] Could not connect to host

Better call and define the end point location manually.
To Top