Jump to content

[SOLVED] inserting into array


taith

Recommended Posts

anybody know an efficient way of appending to an array?

 

$array[]='test';
$array[]='test';
$array[]='test';
$array[]='test6';
$array[]='test';

 

say... i want to move test6 to the #2 position... and increase the other keys under it... by 1...?

 

i know i could make a function to do this... just didnt know if php had a built in function like that :-)

Link to comment
Share on other sites

All credits to frost110 for this, I remember reading this post the other day:

 

<?php
function insertArray($array, $addDataArr, $pos) {
    $newKey = -1;
    foreach ($array as $key => $val) {
          if ($key == $pos) { 
                foreach ($addDataArr as $val) {
                      $newArray[$key++] = $val;
                }
                $newKey = $key;     
          }else {
              if (isset($newKey) && $newKey != -1) {
                    $newArray[$newKey++] = $val;
              }else {
                    $newArray[$key] = $val;
              }
          }
    }
}
?>

 

Probably not the best way but I think it works, I also think there is something like www.php.net/array_merge

 

But yea, I think the above will work, untested.

Link to comment
Share on other sites

All credits to frost110 for this, I remember reading this post the other day:

 

<?php
function insertArray($array, $addDataArr, $pos) {
    $newKey = -1;
    foreach ($array as $key => $val) {
          if ($key == $pos) { 
                foreach ($addDataArr as $val) {
                      $newArray[$key++] = $val;
                }
                $newKey = $key;     
          }else {
              if (isset($newKey) && $newKey != -1) {
                    $newArray[$newKey++] = $val;
              }else {
                    $newArray[$key] = $val;
              }
          }
    }
}
?>

 

Probably not the best way but I think it works, I also think there is something like www.php.net/array_merge

 

But yea, I think the above will work, untested.

 

Go me.

Link to comment
Share on other sites

aah... so... no prebuilt way...

 

i made this one hwile i was waiting... lol :D

 

$array[]='1';
$array[]='2';
$array[]='3';
$array[]='4';
$array[]='5';
$array[]='6';
$array[]='7';

function array_resort($array, $value, $key){
$out=array();
for($i=0; $i<count($array); $i++){
  if($i<$key) $out[$i]=$array[$i];
  elseif($i==$key&&!$done){
   $done=true;
   $out[$key]=$value;
   $i--;
  }else $out[$i+1]=$array[$i];
}
return $out;
}
$array=array_resort($array,'test','2');
print_r($array);

Link to comment
Share on other sites

well just for fun I updated my function to takin a single string, or a whole array. Fun stuff.

 

<?php
function array_insert($array, $add_data, $pos) {
    $new_key = -1;
    foreach ($array as $key => $val) {
          if ($key == $pos) { 
                if (is_array($add_data)) {
                foreach ($add_data as $val2) {
        	              $new_array[$key++] = $val2;
                	}
	}else {
		$new_array[$key++] = $add_data;
	}

                $new_key = $key;     
          }else {
	$index = ($new_key!=-1)?$new_key++:$key;
	$new_array[$index] = $val;
  }
    }
}
?>

 

Remember this is still un-tested.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.