Skip to content

Instantly share code, notes, and snippets.

@Nek-
Created January 28, 2014 00:09
Show Gist options
  • Select an option

  • Save Nek-/8659994 to your computer and use it in GitHub Desktop.

Select an option

Save Nek-/8659994 to your computer and use it in GitHub Desktop.
<?php
$base = array('foo' => array('bar' => array('foobar' => 'magicbox')));
$str = 'foo.bar.foobar';
$final = $base;
foreach (explode('.', $str) as $e) $final = $final[$e];
echo $final;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment