How can I create an array of the letters of the alphabet?
<?php
$letters = range(a,z);
?>
This will give you an array from A to Z.
More arrays PHP Questions
How do I turn an array into a string?How do I check if a variable is of array type?
How do you remove duplicate values from an array?
I want to invert my array, can I do this?
I am not interested in the values in the arrays, how can I discard them?