Skip to content

Instantly share code, notes, and snippets.

@chocnut
Created September 6, 2012 08:37
Show Gist options
  • Save chocnut/3653137 to your computer and use it in GitHub Desktop.
Save chocnut/3653137 to your computer and use it in GitHub Desktop.
php test
$week_no = array(2,3,4);
$days = array('TU', 'WE', 'TH');
foreach ($week_no as $n) {
foreach ($days as $d) {
$out[] = $n . $d;
}
}
var_dump($out); // array('2TU', '2WE', '2TH','3TU', '3WE', '3TH, '4TU', '4WE', '4TH)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment