PHP Questions Home | Register | Login
Categories
Arrays
Files
Forms
Creating PDFs
PHP Errors
Functions
Images
MySQL
Numbers
Others
Strings
Website
Unanswered

PHP Forums
Forums Index
MySQL Forum
PHP Forum
Flash/Actionscript
Javascript
Web design

More PHP
PHP Functions
Top Questions
Ask a Question
PHP Interview Questions
PHP Jobs
Ecommerce
IT Questions
Business Websites

Sponsors

sponsor ad
My Salary
PHP Developer Salary
Advertise Here

How can I create an array of numbers easily?


If you want to create an array of consecutive numbers in PHP, then you can do it the long hand way...

<?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?



Custom Search