Is there a loop close to the for(); loop for alphabetical characters?
Like a-z?
Alphabet Array?
Moderator: General Moderators
-
Robert Plank
- Forum Contributor
- Posts: 110
- Joined: Sun Dec 26, 2004 9:04 pm
- Contact:
Code: Select all
$alphabet = range('a', 'z');
foreach ($alphabet as $letter) {
// do whatever in here...
}