首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

SoapClient::__setLocation

(PHP 5 >= 5.0.1, PHP 7)

SoapClient::__setLocation — Sets the location of the Web service to use

Description

代码语言:javascript
复制
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.

Parameters

new_location

The new endpoint URL.

Return Values

The old endpoint URL.

Examples

Example #1 SoapClient::__setLocation() example

代码语言:javascript
复制
<?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;

?>

The above example will output something similar to:

代码语言:javascript
复制
http://www.somethirdparty.com

See Also

  • SoapClient::SoapClient() - SoapClient constructor

← SoapClient::__setCookie

SoapClient::__setSoapHeaders →

代码语言:txt
复制
 ? 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com