略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: SoapClient::__setLocation

2024-03-29

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 noteadd a note

User Contributed Notes 1 note

up
-1
maoneid at gmail dot com
4 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.

官方地址:https://www.php.net/manual/en/soapclient.setlocation.php

冷却塔厂家 广告
-- 广告
北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3