Answers for "delte specific elemnt of array in php"

PHP
0

php remove specific element from array

if (($key = array_search('strawberry', $array)) !== false) {
    unset($array[$key]);
}
Posted by: Guest on July-08-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