标签:lte strong code 回调函数 处理 print font div filter
array_filter 函数的功能是利用回调函数来对数组进行过滤,一直都以为用回调函数才能处理,
却没有发现手册下面还有一句,如果没有回调函数,那么默认就是删除数组中值为false的项目
代码:
<?php $entry = array( 0 => ‘foo‘, 1 => false, 2 => -1, 3 => null, 4 => ‘‘ ); print_r(array_filter($entry)); ?>
输出:
Array ( [0] => foo [2] => -1 )
标签:lte strong code 回调函数 处理 print font div filter
原文地址:https://www.cnblogs.com/wanlibingfeng/p/8868291.html