up vote 15 down vote favorite
2
share [g+] share [fb]

Is there a way to get all alphabetic chars (A-Z) in an array in PHP so I can loop through them and display them?

link|improve this question

reopening, there might be other ways.. – Jeff Atwood Jan 10 '09 at 23:04
feedback

8 Answers

up vote 50 down vote accepted
$alphas = range('A', 'Z');
link|improve this answer
feedback

To get both upper and lower case merge the two ranges:

$alphas = array_merge(range('A', 'Z'), range('a', 'z'));
link|improve this answer
2  
or simply $alphas = range('A', 'Z') + range('a', 'z'); – Cassy Jan 11 '09 at 16:09
feedback

$alphabet = array('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z')

link|improve this answer
1  
funny but usable – Click Upvote Jan 12 '09 at 4:44
feedback

Another way:

$c = 'A';
$chars = array($c);
while ($c < 'Z') $chars[] = ++$c;
link|improve this answer
feedback
$array = range('a', 'z');
link|improve this answer
feedback
<?php 

$array = Array();
for( $i = 65; $i < 91; $i++){
        $array[] = chr($i);
}

foreach( $array as $k => $v){
        echo "$k $v \n";
}

?>

$ php loop.php 
0 A 
1 B 
2 C 
3 D 
4 E 
5 F 
6 G 
7 H
...
link|improve this answer
You can just do $array[] = chr($i) to append an element – Tom Haigh Jan 10 '09 at 23:21
That's essentially what range does but this is a wider way of doing it. – Ross Jan 11 '09 at 12:57
You may of been using JavaScript a while because Array() should really be array(). Or, in JS, [] :) – alex Jan 19 '10 at 6:09
feedback
$alphabets = range('A', 'Z');
    $doubleAlphabets = array();
    $count = 0;
    foreach($alphabets as $key => $alphabet)
    {
        $count++;
        $letter = $alphabet;
        while ($letter <= 'Z') 
        {
            $doubleAlphabets[] = $letter;

            ++$letter;
        }
    }

    return $doubleAlphabets;
link|improve this answer
feedback
PHP has already provided a function for such applications
chr(x); returns the ascii character with integer index of x;
refer http://www.asciitable.com/
In some cases, this approach should prove most intuitive.

<pre><code>
$UPPERCASE_LETTERS = range(chr(65),chr(90));
$LOWERCASE_LETTERS = range(chr(97),chr(122));
$NUMBERS_ZERO_THROUGH_NINE = range(chr(48),chr(57));

$ALPHA_NUMERIC_CHARS =
array_merge($UPPERCASE_LETTERS, $LOWERCASE_LETTERS, $NUMBERS_ZERO_THROUGH_NINE); 
</pre></code>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.