API16

JRegistry/toArray: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Transforms a namespace to an array <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</no...
 
m clean up
Line 2: Line 2:
Transforms a namespace to an array
Transforms a namespace to an array


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JRegistry/toArray|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JRegistry/toArray}}
 
{{subst:Description:JRegistry/toArray}}


===Syntax===
===Syntax===
Line 51: Line 49:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JRegistry/toArray|Edit See Also]]<nowiki>]</nowiki>
{{subst:SeeAlso:JRegistry/toArray}}
</span>
{{SeeAlso:JRegistry/toArray}}


===Examples===
===Examples===

Revision as of 14:20, 24 March 2017

Description

Transforms a namespace to an array


{{subst:Description:JRegistry/toArray}}

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;
}


{{subst:SeeAlso:JRegistry/toArray}}

Examples

<CodeExamplesForm />