Deleting an element from an array in PHP

后端 未结 30 3276
时光说笑
时光说笑 2020-11-21 05:55

Is there an easy way to delete an element from an array using PHP, such that foreach ($array) no longer includes that element?

I thought that setting it

30条回答
  •  无人共我
    2020-11-21 06:26

    This may help...

    "red", "b"=>"green", "c"=>"blue", "d"=>"yellow");
        $a2 = array("a"=>"purple", "b"=>"orange");
        array_splice($a1, 0, 2, $a2);
        print_r($a1);
    ?>
    

    The result will be:

    Array ( [0] => purple [1] => orange [c] => blue [d] => yellow )
    

提交回复
热议问题