API16:JArrayHelper/toObject
From Joomla! Documentation
Description
Utility function to map an array to a stdClass object.
<! removed transcluded page call, red link never existed >
Syntax
static toObject(&$array, $class= 'stdClass')
Parameter Name | Default Value | Description |
---|---|---|
&$array | $array The array to map. | |
$class | 'stdClass' | $calss Name of the class to create |
Returns
object The object mapped from the given array
Defined in
libraries/joomla/utilities/arrayhelper.php
Importing
jimport( 'joomla.utilities.arrayhelper' );
Source Body
static function toObject(&$array, $class = 'stdClass')
{
$obj = null;
if (is_array($array))
{
$obj = new $class();
foreach ($array as $k => $v)
{
if (is_array($v)) {
$obj->$k = JArrayHelper::toObject($v, $class);
} else {
$obj->$k = $v;
}
}
}
return $obj;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples