ru_php/ext/soap/tests/bugs/bug54911.phpt

22 lines
791 B
PHP

--TEST--
Bug #54911 (Access to a undefined member in inherit SoapClient may cause Segmentation Fault)
--EXTENSIONS--
soap
--FILE--
<?php
class XSoapClient extends SoapClient {
function __doRequest($request, $location, $action, $version, $one_way = false, ?string $uriParserClass = null): never {
echo self::$crash;
}
}
$client = new XSoapClient(null, array('uri'=>'', 'location'=>''));
$client->__soapCall('', array());
?>
--EXPECTF--
Fatal error: Uncaught Error: Access to undeclared static property XSoapClient::$crash in %sbug54911.php:4
Stack trace:
#0 [internal function]: XSoapClient->__doRequest('<?xml version="...', '', '#', 1, false)
#1 %sbug54911.php(8): SoapClient->__soapCall('', Array)
#2 {main}
thrown in %sbug54911.php on line 4