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.
Comment on this Question and Answer >>>
ASK A QUESTION
More arrays PHP Questions
How can I reverse sort an array keeping the correlation between the index and value?I am not interested in the values in the arrays, how can I discard them?
How do I reverse the order of the elements in an array?
How do I add to the end of an array and know how large the array is?
How do I check if a variable is of array type?
