/ Published in: PHP
URL: http://www.phpro.org/examples/Convert-Object-To-Array-With-PHP.html
From this URL : http://www.phpro.org/examples/Convert-Object-To-Array-With-PHP.html
Expand |
Embed | Plain Text
/** * * Convert an object to an array * Also converts objects within objects / arrays * * @param object $object The object to convert * @reeturn array * */ public function objectToArray($data) { { foreach ($data as $key => $value) { $result[$key] = $this->objectToArray($value); } return $result; } return $data; }
You need to login to post a comment.
