API15:JSimpleXMLElement
From Joomla! Documentation
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