Skip to content

Instantly share code, notes, and snippets.

@ruliarmando
Created May 15, 2013 09:55
Show Gist options
  • Save ruliarmando/5582879 to your computer and use it in GitHub Desktop.
Save ruliarmando/5582879 to your computer and use it in GitHub Desktop.
<?php
function array_insert(&$array, $value, $index){
return $array = array_merge(array_splice($array, max(0, $index - 1)), array($value), $array);
}
$arr = array(1,2,3,4);
$more = array('nama', 'address');
array_splice($arr, 2, 0, array($more));
echo "<pre>";
print_r($arr);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment