Answers for "array deletion in php"

PHP
17

php delete array item by value

$colors = array("blue","green","red");

//delete element in array by value "green"
if (($key = array_search("green", $colors)) !== false) {
    unset($colors[$key]);
}
Posted by: Guest on October-30-2019
12

php remove item array

$items = ['banana', 'apple'];

unset($items[0]);

var_dump($items); // ['apple']
Posted by: Guest on March-20-2020
0

how to delete item from array php

$array = [0 => "a", 1 => "b", 2 => "c"];
unset($array[1]);
Posted by: Guest on October-20-2020

Browse Popular Code Answers by Language