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 9013813
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T03:21:40+00:00 2026-06-16T03:21:40+00:00

Ok so I have two arrays, and the second one is allways twice larger

  • 0

Ok so I have two arrays, and the second one is allways twice larger than first one:

$items1 = array('1', '2', '3');
$items2 = array('a', 'b', 'c', 'd', 'e', 'f');

I know that i can foreach two arrays with same items count like this:

foreach ($items1 as $key => $item1)
{
echo $item1 . $items2[$key] . ', ';
}

This will give result like this: 1a, 2b, 3c….
But how to foreach thos two arrays to get result like this:
1ab, 2cd, 3ef?
aka echo first item from $items1 array, an then two from $items2.

  • 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-16T03:21:41+00:00Added an answer on June 16, 2026 at 3:21 am

    You could write:

    foreach ($items1 as $i => $item1)
    {
        echo $item1 . $items2[$i * 2] . $items2[$i * 2 + 1] . ', ';
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two arrays, the first one contents numbers and the second one use
Suppose I have two arrays like the following: $arr2 = array(array(first, second), array(third, fourth));
I have two arrays. One is a larger bit of data: Array ( [12]
I have two arrays, the first one is a (n, 2) array which contains
Problem: I have two array where one produce a category and the second produce
I have a situation where I have two arrays and I use one array(A)
I have two arrays that look like this: (this one is ordered by value_max
I have two 1D arrays, x & y, one smaller than the other. I'm
I have two arrays. The first one contains of places and some information about
I have two arrays. The first one contains an id, username, and password from

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.