To remove null values in the array, you can consider using the array_filter() function.
Function introduction:
array_filter() function uses a callback function to filter elements in the array.
This function passes each key value in the input array to the callback function. If the callback function returns true, the current key value in the input array is returned to the result array. Array key names remain unchanged.
Grammar format:
array array_filter ( array $array [, callable $callback [, int $flag = 0 ]] )
Code example:
<?php $array = array('a' => "abc", 'b' => "bcd",'c' =>"cde",'d' =>"def",'e'=>""); $b= array_filter($array); print_r($b); ?>
Output result:
Array ( [a] => abc [b] => bcd [c] => cde [d] => def )
For more related tutorials, please visit php中文网.
The above is the detailed content of How to remove null values from an array in php. For more information, please follow other related articles on the PHP Chinese website!