Alphabet Array?
Posted: Tue Jun 27, 2006 6:40 pm
Is there a loop close to the for(); loop for alphabetical characters?
Like a-z?
Like a-z?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
$alphabet = range('a', 'z');
foreach ($alphabet as $letter) {
// do whatever in here...
}