Skip to content

Instantly share code, notes, and snippets.

@mityukov
Last active January 13, 2018 03:18
Show Gist options
  • Save mityukov/f7f6847d142323b1c947c69d1317a4ad to your computer and use it in GitHub Desktop.
Save mityukov/f7f6847d142323b1c947c69d1317a4ad to your computer and use it in GitHub Desktop.
array_undot() helper functon
<?php
function array_undot($dottedArray, $initialArray = [])
{
// to make it recursive:
$dottedArray = array_dot($dottedArray);
foreach ($dottedArray as $key => $value) {
array_set($initialArray, $key, $value);
}
return $initialArray;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment