Skip to content

Instantly share code, notes, and snippets.

@dwihujianto
Last active February 1, 2018 03:49
Show Gist options
  • Select an option

  • Save dwihujianto/32391c8eefcce919c6af37cb9e6f7231 to your computer and use it in GitHub Desktop.

Select an option

Save dwihujianto/32391c8eefcce919c6af37cb9e6f7231 to your computer and use it in GitHub Desktop.
<?php
function convert_to_object($array) {
$object = new stdClass();
foreach ($array as $key => $value) {
if (is_array($value)) {
$value = convert_to_object($value);
}
$object->$key = $value;
}
return $object;
}
$sample = [
'first' => [
'secound' => [
''
]
],
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment