Skip to content

Instantly share code, notes, and snippets.

@grandmanitou
Created January 20, 2014 14:57
Show Gist options
  • Save grandmanitou/8521246 to your computer and use it in GitHub Desktop.
Save grandmanitou/8521246 to your computer and use it in GitHub Desktop.
PHP convert numbers to capital letters (useful to create excel tables)
function num2alpha($n) {
$r = '';
for ($i = 1; $n >= 0 && $i < 10; $i++) {
$r = chr(0x41 + ($n % pow(26, $i) / pow(26, $i - 1))) . $r;
$n -= pow(26, $i);
}
return $r;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment