mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-31 17:33:48 +00:00
9 lines
212 B
PHP
9 lines
212 B
PHP
<?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);
|
|
}
|
|
|
|
?>
|