/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function object2array($mixed) { foreach($mixed as $key => $val) { $new[$key] = object2array($val); } } else $new = $mixed; return $new; }