API15:JSimpleXMLElement/map
From Joomla! Documentation
Description
traverses the tree calling the $callback( JSimpleXMLElement $this, mixed $args=array() ) function with each JSimpleXMLElement.
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
map($callback, $args=array())
| Parameter Name | Default Value | Description |
|---|---|---|
| $callback | $callback function name | |
| $args | array() | $args |
Defined in
libraries/joomla/utilities/simplexml.php
Importing
jimport( 'joomla.utilities.simplexml' );
Source Body
function map($callback, $args=array())
{
$callback($this, $args);
// Map to all children
if ($n = count($this->_children)) {
for($i=0;$i<$n;$i++)
{
$this->_children[$i]->map($callback, $args);
}
}
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples