Skip to content

Instantly share code, notes, and snippets.

@Dexus
Created March 31, 2016 13:03
Show Gist options
  • Save Dexus/1ee14f30fb2a4c3baa993921da584a5d to your computer and use it in GitHub Desktop.
Save Dexus/1ee14f30fb2a4c3baa993921da584a5d to your computer and use it in GitHub Desktop.
<?php
$results = [];
foreach (range('A', 'Z') as $character) {
$results[$character] = [];
foreach (range(1, 26) as $number) {
$results[$character][] = $character . $number;
}
}
foreach ($results as $result) {
echo implode(', ', $result) . PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment