Skip to content

Instantly share code, notes, and snippets.

@maxout
Last active December 28, 2015 12:59
Show Gist options
  • Save maxout/7504668 to your computer and use it in GitHub Desktop.
Save maxout/7504668 to your computer and use it in GitHub Desktop.
build multidimensional array from string
$ret = array_map (
function ($_) {return explode (':', $_);},
explode (';', $data)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment