I have an array that gets processed through a foreach loop.
foreach($images as $imageChoices) {
Do stuff here
}
How do I limit the loop to only process the first 4 items in the array?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
array_slice()function can be used.This enables you to only loop over the values that you want, without keeping count of how many you have done so far.