Skip to content

Instantly share code, notes, and snippets.

@nikic
Forked from ircmaxell/gist:1188649
Created September 2, 2011 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikic/1188670 to your computer and use it in GitHub Desktop.
Save nikic/1188670 to your computer and use it in GitHub Desktop.
PHP example on variable variables - without needing them
<?php
function bar($a, $b, $c) {
foreach (compact('a', 'b', 'c') as $key => $value) {
$form[$key] = array(
'#type' => 'hidden',
'#value' => $value,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment