在PHP中,可以使用array_filter()
函数来过滤数组中的空值。array_filter()
函数会将数组中的每个元素传递给回调函数进行判断,如果回调函数返回false
,则该元素被过滤掉。
以下是一个示例:
$array = [1, 2, '', 3, null, 4, false];
// 过滤数组中的空值
$result = array_filter($array);
// 输出结果
print_r($result);
输出结果为:
Array
(
[0] => 1
[1] => 2
[3] => 3
[5] => 4
)
在上面的例子中,数组$array
中包含了空字符串、null
、false
等空值。通过array_filter()
函数过滤后,只保留了非空值的元素。