Created
May 25, 2014 17:57
-
-
Save cmfcmf/2329ddfb68f892d4f37e to your computer and use it in GitHub Desktop.
Convert letter indexes to the actual letter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$numbers = array(16,18,9,22,1,3,25,12,15,19,20); | |
foreach ($numbers as $number) | |
echo chr(64 + $number); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment