php array re populate keys

后端 未结 3 1589
野趣味
野趣味 2020-12-22 05:09

Hi I have an array, I need to change the keys, in an orderly manner but don\'t change the order the values are. e.g.

$a = array (
 0=>\'h\',
 1=>\'blab         


        
3条回答
  •  隐瞒了意图╮
    2020-12-22 05:25

    You can also use array_splice() instead of unset(), which will automatically reindex the array elements:

    $a = array (
     0=>'h',
     1=>'blabla',
     2=>'yes'
    );
    
    array_splice($a,1,1);
    
    var_dump($a);
    

提交回复
热议问题