Merge branch 'PHP-7.3' into PHP-7.4

This commit is contained in:
Nikita Popov 2019-05-22 11:43:40 +02:00
commit ce8be6f499

View file

@ -7,13 +7,13 @@ soap.wsdl_cache_enabled=0
--FILE--
<?php
try {
$x = new SoapClient('http://slashdot.org');
$x = new SoapClient('https://php.net');
} catch (SoapFault $e) {
echo $e->getMessage() . PHP_EOL;
}
die('ok');
?>
--EXPECTF--
SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://slashdot.org' : %s
SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://php.net' : %s
ok