JSimpleXMLElement: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 1: | Line 1: | ||
===Defined in=== | ===Defined in=== | ||
libraries/joomla/utilities/simplexml.php | libraries/joomla/utilities/simplexml.php | ||
| Line 56: | Line 54: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JSimpleXMLElement | category=JSimpleXMLElement | ||
namespace=CodeExample | |||
category=ClassExample | category=ClassExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
Latest revision as of 02:06, 25 March 2017
Defined in
libraries/joomla/utilities/simplexml.php
Methods
| Method name | Description |
|---|---|
| __construct | Constructor, sets up all the default values |
| name | Get the name of the element |
| attributes | Get the an attribute of the element |
| data | Get the data of the element |
| setData | Set the data of the element |
| children | Get the children of the element |
| level | Get the level of the element |
| addAttribute | Adds an attribute to the element |
| removeAttribute | Removes an attribute from the element |
| addChild | Adds a direct child to the element |
| removeChild | |
| getElementByPath | Get an element in the document by / separated path |
| map | traverses the tree calling the $callback(JSimpleXMLElement $this, mixed $args=array()) function with each JSimpleXMLElement. |
| toString | Return a well-formed XML string based on SimpleXML element |
Importing
jimport( 'joomla.utilities.simplexml' );
Examples
Code Examples