Answers for "php array remove em"

PHP
16

php remove item array

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

unset($items[0]);

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

php remove empty values from array

// One liner to remove empty ("" empty string) elements from your array.
// Note: This code deliberately keeps null, 0 and false elements.
$array = array_filter($array, function($a) {return $a !== "";});

// OR if you want to trim your array elements first:
// Note: This code also removes null and false elements.
$array = array_filter($array, function($a) {
    return trim($a) !== "";
});
Posted by: Guest on September-18-2020

Browse Popular Code Answers by Language