object2array
- Versions
- 4.6
object2array($object)
Convert an object to an associative array.
Code
includes/common.inc, line 440
<?php
function object2array($object) {
if (is_object($object)) {
foreach ($object as $key => $value) {
$array[$key] = $value;
}
}
else {
$array = $object;
}
return $array;
}
?>Login or register to post comments 