mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
19 lines
544 B
PHP
19 lines
544 B
PHP
--TEST--
|
|
Bug #46760 (SoapClient doRequest fails when proxy is used)
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$client = new SoapClient(null, array('proxy_host' => "localhost",
|
|
'proxy_port' => '8080',
|
|
'login' => "user",
|
|
'password' => "test",
|
|
'uri' => 'mo:http://www.w3.org/',
|
|
'location' => 'http://some.url'));
|
|
var_dump($client->_proxy_port);
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(8080)
|