MISP/app/View/Attributes/xml.ctp

9 lines
216 B
PHP

<?php
$xmlArray = array();
foreach ($results as $result) {
$xmlArray['MISP']['Attribute'][] = $result['Attribute'];
}
$xmlObject = Xml::fromArray($xmlArray, array('format' => 'tags'));
echo $xmlObject->asXML();