|
SimpleXMLElement::asXMLReturn a well-formed XML string based on SimpleXML element Description
public mixed SimpleXMLElement::asXML
([ string
$filename
] )The asXML method formats the parent object's data in XML version 1.0. Parameters
Return Values
If the Examples
Example #1 Get XML
<?php The above example will output: <?xml version="1.0"?> <a> <b> <c>text</c> <c>stuff</c> </b> <d> <c>code</c> </d> </a> asXML also works on Xpath results: Example #2 Using asXML() on SimpleXMLElement::xpath results
<?php The above example will output: <c>text</c><c>stuff</c> |