I am extremely new at php and I was wondering if someone could help me use either a for or while loop to create an array 10 elements in length
|
|
The simplest way is to use
But you should know that PHP arrays can be resized whenever you want anyway, I've never needed to create an array of a certain size. |
||
|
|
|
|
I'm not sure exactly what your purpose is here. PHP's arrays are dynamic, meaning that you can keep adding elements to them after they're created - that is, you don't need to define the length of the array at the start. I'll assume you want want to put 10 arbitrary things in an array. for loop:
while loop:
by defining it:
Or if you just wanted a range of letters or numbers:
|
||
|
|
|
|
a bit easier to comprehend for a beginner maybe...
|
||
|
|
|
|
A different approach to the 'for' loop would be
I use this method, I find it's easier to glance over to see what it does. As strager pointed out, it may or may not be easier to read to you. He/she also points out that a temporary array is created, and thus is slightly more expensive than a normal for loop. This overhead is minimal, so I don't mind doing it this way. What you implement is up to you. |
||||
|
|
|
|
||||||
|
