PHP » GoLang |
login |
register |
about
|
GoLang SimpleXMLElement::asXML
request it (333)
GoLang replacement for PHP's SimpleXMLElement::asXML
[edit | history]
SimpleXMLElement::asXML(PHP 5, PHP 7) SimpleXMLElement::asXML — Return a well-formed XML string based on SimpleXML element DescriptionThe 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> |
more
Recently updated
more
Most requested
more
Last requests
|