Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an associative array in the form key => value where key is a numerical value, however it is not a sequential numerical value. The key is actually an ID number and the value is a count. This is fine for most instances, however I want a function that gets the human-readable name of the array and uses that for the key, without changing the value.

I didn't see a function that does this, but I'm assuming I need to provide the old key and new key (both of which I have) and transform the array. Is there an efficient way of doing this?

share|improve this question

6 Answers

up vote 122 down vote accepted
$arr[$newkey] = $arr[$oldkey];
unset($arr[$oldkey]);
share|improve this answer
2  
Just be careful that 1) No two keys have the same human-readable version 2) No human-readable versions happen to be numbers – Greg Oct 27 '08 at 17:38
9  
Also this would presumably change the order of the array, which you may need to be careful of. Even associative arrays in PHP are ordered, and sometimes that order is leveraged. – Robin Winslow Feb 9 '12 at 17:14
1  
Yeah, great point Robin. Is there a way to keep the same order? Or do you need to create a new array to achieve that? – Simon Jun 28 '12 at 1:19
6  
Bonus question: How to change the ID, but preserve array order? – Petr Peller Dec 11 '12 at 22:45
if the key value is not changing you will delete an array element. You might want to check for it. – Peeeech Mar 10 at 12:19

if your array is built from a database query, you can change the key directly from the mysql statement:

instead of

"select ´id´ from ´tablename´..."

use something like:

"select ´id´ as NEWNAME from ´tablename´..."

share|improve this answer

You could use a second associative array that maps human readable names to the id's. That would also provide a Many to 1 relationship. Then do something like this:

echo 'Widgets: ' . $data[$humanreadbleMapping['Widgets']];
share|improve this answer

The answer from KernelM is nice, but in order to avoid the issue raised by Greg in the comment (conflicting keys), using a new array would be safer

$newarr[$newkey] = $oldarr[$oldkey];
$oldarr=$newarr;
unset($newarr);
share|improve this answer
This is a good solution, so long as your array is of a reasonable size. If your array consumes more than half of available PHP memory, this will not work. – kingjeffrey Mar 8 '11 at 0:51
3  
@kingjeffrey, not really. Array values will not be duplicated as long as they are "just copied" without being modified. E.g., if there's one array that contains 10'000 elements and consumes 40MB memory, copying it will consume memory that's needed for storing 10'000 only references to already existing values rather than copies of values, so if 1 array consumes 40MB, its copy might consume maybe 0.5MB (tested). – binaryLV Jul 19 '11 at 6:56

I like KernelM's solution, but I needed something that would handle potential key conflicts (where a new key may match an existing key). Here is what I came up with:

    function swapKeys( &$arr, $origKey, $newKey, &$pendingKeys ) {
        if( !isset( $arr[$newKey] ) ) {
            $arr[$newKey] = $arr[$origKey];
            unset( $arr[$origKey] );
            if( isset( $pendingKeys[$origKey] ) ) {
                // recursion to handle conflicting keys with conflicting keys
                swapKeys( $arr, $pendingKeys[$origKey], $origKey, $pendingKeys );
                unset( $pendingKeys[$origKey] );
            }
        } elseif( $newKey != $origKey ) {
            $pendingKeys[$newKey] = $origKey;
        }
    }

You can then cycle through an array like this:

    $myArray = array( '1970-01-01 00:00:01', '1970-01-01 00:01:00' );
    $pendingKeys = array();
    foreach( $myArray as $key => $myArrayValue ) {
        // NOTE: strtotime( '1970-01-01 00:00:01' ) = 1 (a conflicting key)
        $timestamp = strtotime( $myArrayValue );
        swapKeys( $myArray, $key, $timestamp, $pendingKeys );
    }

    // RESULT: $myArray == array( 1=>'1970-01-01 00:00:01', 60=>'1970-01-01 00:01:00' )
share|improve this answer

If your array is recursive you can use this function: test this data:

    $datos = array
    (
        '0' => array
            (
                'no' => 1,
                'id_maquina' => 1,
                'id_transaccion' => 1276316093,
                'ultimo_cambio' => 'asdfsaf',
                'fecha_ultimo_mantenimiento' => 1275804000,
                'mecanico_ultimo_mantenimiento' =>'asdfas',
                'fecha_ultima_reparacion' => 1275804000,
                'mecanico_ultima_reparacion' => 'sadfasf',
                'fecha_siguiente_mantenimiento' => 1275804000,
                'fecha_ultima_falla' => 0,
                'total_fallas' => 0,
            ),

        '1' => array
            (
                'no' => 2,
                'id_maquina' => 2,
                'id_transaccion' => 1276494575,
                'ultimo_cambio' => 'xx',
                'fecha_ultimo_mantenimiento' => 1275372000,
                'mecanico_ultimo_mantenimiento' => 'xx',
                'fecha_ultima_reparacion' => 1275458400,
                'mecanico_ultima_reparacion' => 'xx',
                'fecha_siguiente_mantenimiento' => 1275372000,
                'fecha_ultima_falla' => 0,
                'total_fallas' => 0,
            )
    );

here is the function:

function changekeyname($array, $newkey, $oldkey)
{
   foreach ($array as $key => $value) 
   {
      if (is_array($value))
         $array[$key] = changekeyname($value,$newkey,$oldkey);
      else
        {
             $array[$newkey] =  $array[$oldkey];    
        }

   }
   unset($array[$oldkey]);          
   return $array;   
}
share|improve this answer

protected by Will Dec 27 '10 at 0:29

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.