I have a function that makes array to xml
function arrayToXml($array, $rootElement = NULL, $xml = NULL) {
$_xml = $xml;
if ($_xml === NULL) {
$_xml = new SimpleXMLElement($rootElement !== NULL ? $rootElement :
'<root/>');
}
foreach ($array as $k => $v) {
if (is_array($v)) {
//nested array
arrayToXml($v, $k, $_xml->addChild($k));
} else {
$_xml->addChild($k, $v);
}
}
return $_xml->asXML();
}
my array is
$arr['name'] = 'manish';
$arr['age'] = 21;
foreach($departments as $allDepartments){
$arr['department']['departmentId'][] =$allDepartments;
}
this makes the xml like below:
<userDetail>
<name>manish</name>
<age>21</age>
<0>
<department><departmentId>300</departmentId></department>
</0>
<1>
<department><departmentId>100</departmentId></department>
</1>
</userDetail>
Now the problem is this makes some integer nodes. like below <0> 300
I want The above tags should be like
<department><departmentId>300</departmentId></department>
Means I want to remove 0,1 or such type of nodes from this xml.
Please help me.Thanks.