gpt4 book ai didi

php - 删除 PHP 数组中的空值

转载 作者:行者123 更新时间:2023-12-02 05:24:29 26 4
gpt4 key购买 nike

我有一个数组

array (size=7)
0 => string '2'
1 => string ''
2 => string ''
3 => string '0'
4 => string ''
5 => string ''
6 => string '2.5'

我用了:-
array_filter()
删除空值并返回
Array ( [0] => 2 [6] => 2 )
array_filter()删除空值和“0”值。

PHP 中的任何内置函数都可用于仅删除 NULL 值。

最佳答案

假设:我认为您想删除 NULL以及空字符串/值 ''从你的阵列。 (我从你想要的输出中了解到什么)
您必须使用 array_filter()strlen()

array_filter($array,'strlen');
输出:-
https://eval.in/926585
https://eval.in/926595
https://eval.in/926602
引用:-
PHP: array_filter - Manual
PHP: strlen - Manual

关于php - 删除 PHP 数组中的空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48002454/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com