Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8701993
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T02:32:22+00:00 2026-06-13T02:32:22+00:00

How can I take several elements from the array at once? Like foreach is

  • 0

How can I take several elements from the array at once? Like foreach is for only one, how can I get more than one in each iteration?

$data = array(1,2,3,4,5,6);
foreach($data as $a and $b) // pseudocode
{
    echo $a + $b;
}

Is there a way to do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T02:32:23+00:00Added an answer on June 13, 2026 at 2:32 am

    You can try

    $data = array(1,2,3,4,5,6);
    echo "<pre>";
    

    foreach loop using array_chunk

    foreach ( array_chunk($data, 2) as $v ) {
        $v[1] = isset($v[1]) ? $v[1] : 0;
        echo $v[0] + $v[1], PHP_EOL;
    }
    

    For Loop

    for($i = 0; $i < count($data); $i += 2) {
        $v = isset($data[$i + 1]) ? $data[$i + 1] : 0;
        echo $data[$i] + $v, PHP_EOL;
    }
    

    while loop

    $i = 0;
    while($v = array_slice($data, $i, 2)){
        $v[1] = isset($v[1]) ? $v[1] : 0;
        echo $v[0] + $v[1], PHP_EOL;
        $i += 2;
    }
    

    Output

    3
    7
    11
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a view that can take several seconds to process a GET request
I have several large CSS files and making a change can sometimes take a
can i get validation on weight which can take decimal values and also integer.
Zlib::GzipReader can take an IO, or IO-like, object. as it's input, as stated in
Is there anyway we can take input from command line in Objective-C, the way
Each time a users visits my web site pages, several xml elements are written
I have to list several elements that are coming from a database source A
My GAE application receives several files in the upload (can be from 0 to
I have a few bash scripts I run, but they can take several hours
I have two entities User and Course. A user can take several courses which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.