Skip to content

Instantly share code, notes, and snippets.

@noelmcavoy
Created March 4, 2013 22:56
Show Gist options
  • Save noelmcavoy/5086420 to your computer and use it in GitHub Desktop.
Save noelmcavoy/5086420 to your computer and use it in GitHub Desktop.
Create variables from each array value
$keys = array_keys($array);
foreach ($keys as $key) {
$$key = $array[$key];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment