Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Bug #41097 (ext/soap returning associative array as indexed without using WSDL) -..
Decoded Output download
--TEST--
Bug #41097 (ext/soap returning associative array as indexed without using WSDL)
--EXTENSIONS--
soap
--FILE--
<?php
function test($soap, $array) {
$soap->test($array);
echo (strpos($soap->__getLastRequest(), ':Map"') != false)?"Map
":"Array
";
}
$soap = new SoapClient(null, array('uri' => 'http://uri/', 'location' => 'test://', 'exceptions' => 0, 'trace' => 1));
test($soap, array('Foo', 'Bar'));
test($soap, array(5 => 'Foo', 10 => 'Bar'));
test($soap, array('5' => 'Foo', '10' => 'Bar'));
$soap->test(new SoapVar(array('Foo', 'Bar'), APACHE_MAP));
echo (strpos($soap->__getLastRequest(), ':Map"') != false)?"Map
":"Array
";
$soap->test(new SoapVar(array('Foo', 'Bar'), SOAP_ENC_ARRAY));
echo (strpos($soap->__getLastRequest(), ':Map"') != false)?"Map
":"Array
";
?>
--EXPECT--
Array
Map
Map
Map
Array
Did this file decode correctly?
Original Code
--TEST--
Bug #41097 (ext/soap returning associative array as indexed without using WSDL)
--EXTENSIONS--
soap
--FILE--
<?php
function test($soap, $array) {
$soap->test($array);
echo (strpos($soap->__getLastRequest(), ':Map"') != false)?"Map\n":"Array\n";
}
$soap = new SoapClient(null, array('uri' => 'http://uri/', 'location' => 'test://', 'exceptions' => 0, 'trace' => 1));
test($soap, array('Foo', 'Bar'));
test($soap, array(5 => 'Foo', 10 => 'Bar'));
test($soap, array('5' => 'Foo', '10' => 'Bar'));
$soap->test(new SoapVar(array('Foo', 'Bar'), APACHE_MAP));
echo (strpos($soap->__getLastRequest(), ':Map"') != false)?"Map\n":"Array\n";
$soap->test(new SoapVar(array('Foo', 'Bar'), SOAP_ENC_ARRAY));
echo (strpos($soap->__getLastRequest(), ':Map"') != false)?"Map\n":"Array\n";
?>
--EXPECT--
Array
Map
Map
Map
Array
Function Calls
None |
Stats
MD5 | 4ee890b5a799e05a96cd8a202a0721a7 |
Eval Count | 0 |
Decode Time | 77 ms |