mirror of
https://github.com/php/php-src.git
synced 2025-01-11 13:34:24 +08:00
- New test
This commit is contained in:
parent
4ed88343cc
commit
5a3b59995f
16
ext/soap/tests/bug46760.phpt
Normal file
16
ext/soap/tests/bug46760.phpt
Normal file
@ -0,0 +1,16 @@
|
||||
--TEST--
|
||||
Bug #46760 (SoapClient doRequest fails when proxy is used)
|
||||
--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)
|
Loading…
Reference in New Issue
Block a user