1234567891011121314151617181920212223242526272829 |
- --TEST--
- Bug #77141 (Signedness issue in SOAP when precision=-1)
- --EXTENSIONS--
- soap
- --FILE--
- <?php
- class MySoapClient extends SoapClient {
- public function __doRequest($request, $location, $action, $version, $one_way = 0): string {
- echo $request, "\n";
- return '';
- }
- }
- $soap = new MySoapClient(
- null,
- array(
- 'location' => "http://localhost/soap.php",
- 'uri' => "http://localhost/",
- 'style' => SOAP_RPC,
- 'trace' => true,
- 'exceptions' => false,
- )
- );
- ini_set('precision', -1);
- $soap->call(1.1);
- ?>
- --EXPECT--
- <?xml version="1.0" encoding="UTF-8"?>
- <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://localhost/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><ns1:call><param0 xsi:type="xsd:float">1.1</param0></ns1:call></SOAP-ENV:Body></SOAP-ENV:Envelope>
|