API16:JArrayHelper/fromObject
From Joomla! Documentation
Description
Utility function to map an object to an array
<! removed transcluded page call, red link never existed >
Syntax
static fromObject($p_obj, $recurse=true, $regex=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $p_obj | The source object | |
| $recurse | true | True to recurve through multi-level objects |
| $regex | null | An optional regular expression to match on field names |
Returns
array The array mapped from the given object
Defined in
libraries/joomla/utilities/arrayhelper.php
Importing
jimport( 'joomla.utilities.arrayhelper' );
Source Body
static function fromObject($p_obj, $recurse = true, $regex = null)
{
$result = null;
if (is_object($p_obj))
{
$result = array();
foreach (get_object_vars($p_obj) as $k => $v)
{
if ($regex)
{
if (!preg_match($regex, $k))
{
continue;
}
}
if (is_object($v))
{
if ($recurse)
{
$result[$k] = JArrayHelper::fromObject($v, $recurse, $regex);
}
}
else
{
$result[$k] = $v;
}
}
}
return $result;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples