API15:JRegistry/toArray
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Transforms a namespace to an array
Syntax
toArray($namespace=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $namespace | null | $namespace 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
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; }
[Edit See Also] SeeAlso:JRegistry/toArray
Examples
<CodeExamplesForm />
