Config_Container::toArray()

Config_Container::toArray() -- Return key/value pair array of container and its children

Synopsis

require_once 'Config/Container.php';

array Config_Container::toArray (void)

Beschreibung

This method returns an array representation of the Config tree. The format is
$section[directive][index] = value
If the container has attributes, it will use '@' as key for attributes and '#' for values. index is here because multiple directives and sections can have the same name, the toArray() method takes care of that.

Rückgabewert

array - an array representation of the Config_Container tree

Hinweise

Diese Methode kann nicht statisch aufgerufen werden.

Beispiel