JRegistry/toArray: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
Line 4: | Line 4: | ||
===Syntax=== | ===Syntax=== | ||
Line 50: | Line 50: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=toArray | category=toArray | ||
category=JRegistry | category=JRegistry | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> |
Latest revision as of 02:00, 25 March 2017
Description
Transforms a namespace to an array
Syntax
toArray($namespace=null)
Parameter Name | Default Value | Description |
---|---|---|
$namespace | null | Namespace to return [optional: null returns the default namespace] |
Returns
array An associative array holding the namespace data
Defined in
libraries/joomla/registry/registry.php
Importing
jimport( 'joomla.registry.registry' );
Source Body
public function toArray($namespace = null)
{
// If namespace is not set, get the default namespace
if ($namespace == null) {
$namespace = $this->_defaultNameSpace;
}
// Get the namespace
$ns = & $this->_registry[$namespace]['data'];
$array = array();
foreach (get_object_vars($ns) as $k => $v) {
$array[$k] = $v;
}
return $array;
}
Examples
Code Examples