How can i limit a foreach() statement? Say i only want it to run the first 2 'eaches' or something?
|
|
|
|
|
|
|
You can either use
or
(the second solution is even worse) |
||
|
|
|
|
There are many ways, one is to use a counter:
Other way would be to slice the first 2 elements, this isn't as efficient though:
You could also do something like this (basically the same as the first foreach, but with for):
|
||||
|
|
|
you should use the break statement usually it's use this way
on the same fashion the continue statement exists if you need to skip some items. |
|||
|
|
Use a for loop Why would you try to use a Better to just stick with a simple |
||||||
|
