JArrayHelper/toObject: Difference between revisions
From Joomla! Documentation
m removing red link to edit, no existant pages |
m clean up |
||
| Line 2: | Line 2: | ||
Utility function to map an array to a stdClass object. | Utility function to map an array to a stdClass object. | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
| Line 55: | Line 53: | ||
</source> | </source> | ||
<! removed transcluded page call, red link never existed > | <! removed transcluded page call, red link never existed > | ||
Revision as of 13:39, 24 March 2017
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
<CodeExamplesForm />