UIDEV - gesammelte nützliche Snippets
Hier veröffentlichen wir gesammelte Code-Snippets für die Anwendung.
object2array
Gibt das Ojekt als Array aus
<?php
function object2array($obj) {
$_arr = is_object($obj) ? get_object_vars($obj) : $obj;
foreach ($_arr as $key => $val) {
$val = (is_array($val) || is_object($val)) ? object2array($val) : $val;
$arr[$key] = $val;
}
return $arr;
}
$ausgabe=object2array($obj);
?>