API15

JRegistry/toString

From Joomla! Documentation

< API15:JRegistry

The "API15" 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]

Get a namespace in a given string format

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

toString($format= 'INI', $namespace=null, $params=null)
Parameter Name Default Value Description
$format 'INI' $format Format to return the string in
$namespace null $namespace Namespace to return [optional: null returns the default namespace]
$params null $params Parameters used by the formatter, see formatters for more info

Returns[edit]

string Namespace in string format

Defined in[edit]

libraries/joomla/registry/registry.php

Importing[edit]

jimport( 'joomla.registry.registry' );

Source Body[edit]

function toString($format = 'INI', $namespace = null, $params = null)
{
        // Return a namespace in a given format
        $handler =& JRegistryFormat::getInstance($format);

        // If namespace is not set, get the default namespace
        if ($namespace == null) {
                $namespace = $this->_defaultNameSpace;
        }

        // Get the namespace
        $ns = & $this->_registry[$namespace]['data'];

        return $handler->objectToString($ns, $params);
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]