Skip to content

Instantly share code, notes, and snippets.

@cmfcmf
Created May 25, 2014 17:57
Show Gist options
  • Save cmfcmf/2329ddfb68f892d4f37e to your computer and use it in GitHub Desktop.
Save cmfcmf/2329ddfb68f892d4f37e to your computer and use it in GitHub Desktop.
Convert letter indexes to the actual letter
<?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