Skip to content

Instantly share code, notes, and snippets.

@Foxy79
Last active February 24, 2016 14:26
Show Gist options
  • Save Foxy79/4c2ddb685845bdeb77ef to your computer and use it in GitHub Desktop.
Save Foxy79/4c2ddb685845bdeb77ef to your computer and use it in GitHub Desktop.
<?php
function object_to_array($data) {
if (is_array($data) || is_object($data)) {
$result = array();
foreach ($data as $key => $value) { $result[$key] = object_to_array($value); }
return $result;
}
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment