public static function encodeXml($data){
$attr = $xml = "";
foreach($data as $key => $value){
if(is_numeric($key)){
$attr = " id='{$key}'";
$key = "item";
}
$xml .= "<{$key}{$attr}>";
$xml .= is_array($value)?self::encodeXml($value):$value;
$xml .= "</$key>";
}
return $xml;
}