string getXML (
array $decoded
)
getXML() converts the returned array from decode () into a valid XML document.
string
-
the XML document
This function can be called statically.
Create a XML representation
<?php
...
$output = $obj->decode();
$xml = Mail_mimeDecode::getXML($output);
...
?>