Move Value in PHP Array to the Beginning of the Array

前端 未结 12 1404
终归单人心
终归单人心 2020-12-10 02:52

I have a PHP array similar to this:

0 => \"red\",
1 => \"green\",
2 => \"blue\",
3 => \"yellow\"

I want to move yellow to index

12条回答
  •  猫巷女王i
    2020-12-10 03:59

    $array = array(
      'red',
      'green',
      'blue',
      'yellow',
    );
    
    $last = array_pop($array);
    array_unshift($array, $last);
    

提交回复
热议问题