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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T08:01:28+00:00 2026-06-09T08:01:28+00:00

aside from doing the actual work of iterating through an associative array, pushing a

  • 0

aside from doing the actual work of iterating through an associative array, pushing a value into a new array and setting that equal the array of remaining fields, is there an array function built into PHP that would do something like this?

if so, what is it?

i would be changing the following:

array(
    [0] => array(
        [created] => 12512512,
        [name] => something
    )
)

into something like this:

array(
    [12512512] => array(
        [created] => 12512512,
        [name] => something
    )
)
  • 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-09T08:01:29+00:00Added an answer on June 9, 2026 at 8:01 am

    Flip the value and remove the old one in the same array… this should be fine provided the created value doesn’t overwrite one of the existing entries, which I highly doubt since created seems to be a timestamp.

    foreach($myArray as $index => $entry) {
        $myArray[$entry['created']] = $entry;
        unset($myArray[$index]);
    }
    

    Or you could keep both copies and use references to save on ram.

    foreach($myArray as &$entry)
        $myArray[$entry['created']] =& $entry;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing a touchscreen application that, aside from everything else, records the amount of
I'm doing some work on a server that runs CentOS at the moment, and
Aside from scalability issues, has anyone here actually stumbled upon a web-development problem where
Aside from the PEAR repository, which I find often has quite messy code with
Aside from not deploying a Django project to the web site root directory, is
Aside from the official GWT blog, which GWT blogs do you read?
Aside from the GL Support, is there a way to override locale settings with
I have two identical select boxes (aside from their names, of course), and I
I do not know why there are 2 matches found aside from the input
I'm a PHP/MySQL developer who hasn't used any form of versioning aside from copy/paste

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.