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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T10:29:56+00:00 2026-05-27T10:29:56+00:00

I have a pretty complicated array operation, or at least it is complicated for

  • 0

I have a pretty complicated array operation, or at least it is complicated for me. Lets say I got such kind of array

$myArr['url_1']['linktypes']['follow'] = 10;
$myArr['url_1']['linktypes']['nofollow'] = 20;
$myArr['url_1']['linktypes']['other'] = 30;

$myArr['url_2']['linktypes']['follow'] = 40;
$myArr['url_2']['linktypes']['nofollow'] = 50;
$myArr['url_2']['linktypes']['other'] = 60;

$myArr['url_3']['linktypes']['follow'] = 70;
$myArr['url_3']['linktypes']['nofollow'] = 80;
$myArr['url_3']['linktypes']['other'] = 90;

and simply (!) I need to get following result

array(
    array("id"=>1,"metric"=>'follow','url_1'=>10,'url_2'=>40,'url_3'=>70),
    array("id"=>2,"metric"=>'nofollow','url_1'=>20,'url_2'=>50,'url_3'=>80),
    array("id"=>3,"metric"=>'other','url_1'=>30,'url_2'=>60,'url_3'=>90)
);

These array elements are created dynamicall from $myArr. I have tried many ways but I failed many times. Hopefully someone has a short, simple logic to solve this.

Thanks.
Edit: This one is my shortest try. I have many different ways but this code is a part of big code structure, example you see here is created to simplify the logic I need.

$linkStructure = array();
foreach($myArr as $links=>$value){
    $counter = 0;

    foreach($value['linktypes'] as $ltKey => $ltValue){
        if($linkStructure[$counter]["id"] && $linkStructure[$counter]["metric"] == $ltKey){
            $linkStructure[$counter][$links] = $ltValue;
        }
        else{
            $linkStructure[$counter]["id"] = $counter;
            $linkStructure[$counter]["metric"] = $ltKey;
            $linkStructure[$counter][$links] = $ltValue;
        }
    }

} 

I swear I tried how I can prove better I don’t know. Don’t torture please. If you have any idea just share, is it too much I’m asking for?

  • 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-27T10:29:56+00:00Added an answer on May 27, 2026 at 10:29 am

    I can’t explain this very well, so I’m just going to use code:

    $fixedArr = array();
    $idCount = 1;
    
    foreach($myArr as $title=>$subArr)
      foreach($subArr['linktypes'] as $metric=>$val) {
        if(!array_key_exists($metric)) {
          $fixedArr[$metric] = array();
          $fixedArr[$metric]['id'] = $idCount;
          $fixedArr[$metric]['metric'] = $metric;
          $idCount += 1;
        }
        $fixedArr[$metric][$title] = $val;
      }
    

    That should do it.

    But I should say that the comments are right, a better way to structure your array would be like this:

    Array {
      [url_*] => Array {
        [metric] => someValue;
      }
    }
    

    Basically the same way you have it originally, but with fewer dimensions. This is all that you need for the data you have provided.

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

Sidebar

Related Questions

Let's say I have a function which does something pretty complicated and it is
I have a pretty complicated Linq query that I can't seem to get into
i have a pretty complicated form. as you can see below: alt text http://img9.imageshack.us/img9/2465/test2xk.jpg
I have a pretty complicated index.php now, and I would like to only run
I'm back with another (possibly) silly question. sorry. I have a pretty complicated query
Within JSP files, I have some pretty complicated Javascript. On a production machine, we're
We've got a pretty complicated repository here, and I'm trying to get the most
My use is pretty complicated. I have a bunch of objs and they are
We have an odd problem, we are tranforming a pretty complicated XML file using
I have pretty complicated listview component organized as table. On every tr line I

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.