How can I create an array of numbers easily?
<?php
$myarray = array(1,2,3,4,5,6,7);
?>
Or you can do it the easy way, using the range function, which you simply pass the first and last value in the consecutive range. So this is equivalent to the above code:
<?php
$myarray = range(1,7);
?>
... and when you want an array containing the numbers 1 to a 1,000 - then you'll be glad you learned about this function!
Comment on this Question and Answer >>>
ASK A QUESTION
More arrays PHP Questions
How can I create an array of the letters of the alphabet?How can I reverse sort an array keeping the correlation between the index and value?
how sorting an array with keys?
How do I return all the values in an array?
How do I find the size of an array?
