|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2009-11-24 14:55 UTC] tony at marston-home dot demon dot co dot uk
Description:
------------
When the method called in xmlrpc_server_call_method() returns an array where the keys are numeric but non-sequential it does not include the keys in the xml response, so when that response is decoded by the client all the keys are resequenced from zero. This means that all the original keys are lost.
Reproduce code:
---------------
function indexedArray ( $func, $params) {
return array(1=>'One', 3=>'Three', 5=>'Five');
} // indexedArray
$server = xmlrpc_server_create();
$result = xmlrpc_server_register_method($server, 'indexedArray', 'indexedArray');
$HTTP_RAW_POST_DATA = <<<EOD
<?xml version="1.0" encoding="UTF-8"?>
<methodCall>
<methodName>indexedArray</methodName>
<params />
</methodCall>
EOD;
$response = xmlrpc_server_call_method($server, $HTTP_RAW_POST_DATA, null);
$array = xmlrpc_decode($response);
Expected result:
----------------
The contents of $array should read (1=>'One', 3=>'Three', 5=>'Five'). This is because the xml document does not contain any <name> elements for each <member>.
Actual result:
--------------
The contents of $array is (0=>'One', 1=>'Three', 2=>'Five')
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 20:00:01 2025 UTC |
A little bit simpler test which shows the same issue: <?php $a = array(1 => 'one', 3 => 'three', 5 => 'five', 'a'=> 'foo'); var_dump($a, xmlrpc_encode($a)); /* xmlrpc_decode() does work when passed proper data: */ $r = '<?xml version="1.0" encoding="utf-8"?> <params> <param> <value> <struct> <member> <name>1</name> <value> <string>one</string> </value> </member> <member> <name>3</name> <value> <string>three</string> </value> </member> <member> <name>5</name> <value> <string>five</string> </value> </member> <member> <name>a</name> <value> <string>foo</string> </value> </member> </struct> </value> </param> </params> '; var_dump(xmlrpc_decode($r)); ?>