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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:16:11+00:00 2026-05-29T07:16:11+00:00

How would I go about flipping an array and establishing relationships between all the

  • 0

How would I go about flipping an array and establishing relationships between all the values and keys? For example:

I am trying to turn this:

Array ( 
[11913] => Array ( 
            [0] => 4242 
            [1] => 3981 
    ) 
[9878] => Array ( 
            [0] => 2901 
            [1] => 3981 
    ) 
[11506] => Array ( 
            [0] => 3981 
            [1] => 2901 
    ) 
 )

Into this:

Array ( 
    [3981] => Array ( 
            [0] => 11506 
            [1] => 9878 
            [2] => 11913 
        ) 
    [2901] => Array ( 
            [0] => 11506 
            [1] => 9878 
        ) 
    [4242] => Array ( 
            [0] => 11913 
        ) 
     )

Are there any PHP functions that will already do this automatically? If not what would be a way of going about this? Can’t seem to wrap my head around 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-05-29T07:16:13+00:00Added an answer on May 29, 2026 at 7:16 am

    Here you go.

    $final_array = array();
    foreach($initial_array as $key => $val){
        foreach($val as $v){
            $final_array[$v][] = $key;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just a quick question about how you would go about implementing this. I want
Does anybody know how one would go about looping through all the elements in
I thought I would ask about this here. Does anyone know of any work
Generally I would go about this by placing something(s) unique and random in the
Just wondering how people would go about this. Say I have one class that
I am wondering how I would go about storing this in MySQL I am
I'm wondering if it's possible/how I would go about creating something like this in
I am trying to figure out how I would go about caching the data
in CakePHP how would go about running this query? It's to get the next
I'm wondering how you would go about importing a font. I'm trying to use

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.