Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save henriklied/254149 to your computer and use it in GitHub Desktop.
Save henriklied/254149 to your computer and use it in GitHub Desktop.
<?php
$comma_string = 'this,is,a,comma,string,with,some,content';
$exploded = explode(',', $comma_string);
$multi_array = array();
while($exploded) {
$multi_array[array_shift($exploded)] = array_shift($exploded);
}
var_dump($multi_array);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment