Skip to content

Instantly share code, notes, and snippets.

@getmanzooronline
Forked from victorbstan/php_object_to_array.php
Last active August 29, 2015 14:20
Show Gist options
  • Save getmanzooronline/5194b76c1759db918e8f to your computer and use it in GitHub Desktop.
Save getmanzooronline/5194b76c1759db918e8f to your computer and use it in GitHub Desktop.
<?php
/*
This function saved my life.
found on: http://www.sitepoint.com/forums//showthread.php?t=438748
by: crvandyke
It takes an object, and when all else if/else/recursive functions fail to convert the object into an associative array, this one goes for the kill. Who would'a thunk it?!
*/
$array = json_decode(json_encode($object), true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment