SOAP 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

SoapClient->__setLocation

(No version information available, might be only in CVS)

SoapClient->__setLocation Sets the location option.

说明

SoapClient
string __setLocation ([ string $location ] )

Sets the endpoint URL that will be touched by following SOAP requests.

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

参数

location

The URL to be set. If not specified, the existing value of the location option will be unset.

返回值

The old value of the location option.

范例

Example #1 Set A Location

<?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


SOAP 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程