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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T14:36:11+00:00 2026-06-05T14:36:11+00:00

i have two interesting arrays that im trying to combine together. Simple put: $firstArr

  • 0

i have two interesting arrays that im trying to combine together. Simple put:

$firstArr

array(3) {
  [0] => array(2) {
    [0] => string(1) "1"
    [1] => string(16) "test1"
  }
  [1] => array(2) {
    [0] => string(1) "8"
    [1] => string(26) "test2"
  }
  [2] => array(2) {
    [0] => string(1) "9"
    [1] => string(23) "test3"
  }
}


$secondArr

array(3) {
  [0] => string(1) "1"
  [1] => string(1) "2"
  [2] => string(1) "3"
}

what i would like to get is something like this (not arrays):

$x = 1, 8, 8, 9, 9, 9;
$y = test1, test2, test2, test3, test3, test3;

basically the second array values dictates how many times the first array values are duplicated.

any ideas?

  • 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-05T14:36:13+00:00Added an answer on June 5, 2026 at 2:36 pm

    $firstArr=array(array("1","test1"),array("8","test2"),array("9","test3"));
    
    
    $secondArr=array("1","2","3");
    
    
    $x=$y='';
    foreach ($secondArr as $k=>$v){
    $x.= str_repeat($firstArr[$k][0].',',$v);
    $y.= str_repeat($firstArr[$k][1].',',$v);
    }
    
    echo rtrim($x,",").";\n";
    echo rtrim($y,",").";";
    

    OUTPUT:

    1,8,8,9,9,9;
    test1,test2,test2,test3,test3,test3;

    working demo:

    http://codepad.org/yFvWs0Rh

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

An interesting (and probably simple) problem for you all, I have two arrays, and
I have what I think is an interesting question. I have two arrays which
I have two queries that find both the Zip codes, and the States for
I have an interesting programming puzzle for you: You will be given two things:
Here's an interesting question :) I have two vectors of matrices which I want
I have an interesting issue today!! Basically I have two classes. public class A
I have an interesting problem, I have two web services defined in a spring-conf.xml
I'm trying to call a function with a two-dimensional array of variable size as
This is an interesting problem I've come across that I feel should have an
I have a boost dynamic_bitset that I am trying to extract the set bits

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.