You are here

public function XHProfParser::toXML in XHProf 7

Same name and namespace in other branches
  1. 6 XHProfLib/XHProfParser.php \XHProfParser::toXML()

File

XHProfLib/XHProfParser.php, line 19

Class

XHProfParser

Code

public function toXML($totals) {
  $xml = new SimpleXMLElement('<xhprof_data/>');
  array_walk_recursive(array_flip($totals), array(
    $xml,
    'addChild',
  ));
  return $xml
    ->asXML();
}