2016-04-26 03:30:23 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
function object_to_array($obj) {
|
|
|
|
|
if (!is_object($obj) && !is_array($obj)) { return $obj; }
|
|
|
|
|
if (is_object($obj)) { $obj = get_object_vars($obj); }
|
|
|
|
|
return array_map('object_to_array', $obj);
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-29 14:32:42 +01:00
|
|
|
?>
|