How to remove null values from array in php

王林
Release: 2023-02-28 21:04:01
Original
4068 people have browsed it

How to remove null values ​​from array in php

We can use the array_filter() function to achieve this.

Function introduction:

array_filter() function uses a callback function to filter elements in the array.

This function will pass 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.

Code example:

 "abc", 'b' => "bcd",'c' =>"cde",'d' =>"def",'e'=>""); $b= array_filter($array); print_r($b); ?>
Copy after login

The results are as follows:

Array ( [a] => abc [b] => bcd [c] => cde [d] => def )
Copy after login

For more related tutorials, please visitphp Chinese website.

The above is the detailed content of How to remove null values from array in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!