API16

JArrayHelper/toObject: Difference between revisions

From Joomla! Documentation

m clean up
m preparing for archive only
 
Line 57: Line 57:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=toObject
  category=toObject
  category=JArrayHelper
  category=JArrayHelper
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:19, 25 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

Code Examples