API16

JRegistry/toArray

From Joomla! Documentation

< API16:JRegistry

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Transforms a namespace to an array



Syntax[edit]

toArray($namespace=null)
Parameter Name Default Value Description
$namespace null Namespace to return [optional: null returns the default namespace]

Returns[edit]

array An associative array holding the namespace data

Defined in[edit]

libraries/joomla/registry/registry.php

Importing[edit]

jimport( 'joomla.registry.registry' );

Source Body[edit]

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[edit]

Code Examples[edit]