suchen

Heim  >  Fragen und Antworten  >  Hauptteil

怎么把数组的键重定义?

$arr = array( [8]=>123 , [0]=>888 );

就是把他变成 array( [0]=>123 , [1]=>888 ) , 不改变顺序;


巴扎黑巴扎黑2943 Tage vor711

Antworte allen(1)Ich werde antworten

  • 女神的闺蜜爱上我

    女神的闺蜜爱上我2016-11-10 16:01:31

    array array_values ( array $input )

    返回 input 数组中所有的值并给其建立数字索引。

    $arr = array( [8]=>123 , [0]=>888 );
    var_dump(array_values($arr));//output array( [0]=>123 , [1]=>888 )


    Antwort
    0
  • StornierenAntwort