Answers for "remove specific value from array 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
1

PHP: How to remove specific element from an array?

$array = array('apple', 'orange', 'strawberry', 'blueberry', 'kiwi', 'strawberry'); //throw in another 'strawberry' to demonstrate that it removes multiple instances of the string
$array_without_strawberries = array_diff($array, array('strawberry'));
print_r($array_without_strawberries);
Posted by: Guest on May-11-2021
0

Remove a specific element from an array php

$array=array_diff($array,['strawberry']);
Posted by: Guest on June-04-2021
0

PHP: How to remove specific element from an array?

if (($key = array_search('strawberry', $array)) !== false) {
    unset($array[$key]);
}
Posted by: Guest on May-11-2021

Code answers related to "remove specific value from array php"

Browse Popular Code Answers by Language