Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
3  
reopening, there might be other ways.. – Jeff Atwood Jan 10 '09 at 23:04

8 Answers

up vote 117 down vote accepted
$alphas = range('A', 'Z');
share|improve this answer
6  
I love this answer. Thank you for introducing me to the range() funciton! – Theodore R. Smith Jun 4 '12 at 0:14

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

$alphas = array_merge(range('A', 'Z'), range('a', 'z'));
share|improve this answer
$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');
share|improve this answer
6  
funny but usable – Click Upvote Jan 12 '09 at 4:44

Another way:

$c = 'A';
$chars = array($c);
while ($c < 'Z') $chars[] = ++$c;
share|improve this answer
1  
oh php................... – Click Upvote Oct 3 '12 at 18:48
<?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
...
share|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

PHP has already provided a function for such applications.
chr(x) returns the ascii character with integer index of x.
In some cases, this approach should prove most intuitive.
Refer http://www.asciitable.com/

$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); 
share|improve this answer
$array = range('a', 'z');
share|improve this answer
$alphabets = range('A', 'Z');
    $doubleAlphabets = array();
    $count = 0;
    foreach($alphabets as $key => $alphabet)
    {
        $count++;
        $letter = $alphabet;
        while ($letter <= 'Z') 
        {
            $doubleAlphabets[] = $letter;

            ++$letter;
        }
    }

    return $doubleAlphabets;
share|improve this answer
Can you provide some explanation with your answer? – alexw Nov 15 '12 at 1:26
This lists all two letter combinations, why? – Davorin Nov 15 '12 at 1:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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