Ds \ Set::filter()函数是PHP中的内置函数,用于使用过滤器函数创建新集合。
用法:
Ds\Set public Ds\Set::filter( $callback )
参数:该函数接受单个参数$callback,该参数是可选的,如果应包含该值,则返回True,否则返回False。
返回值:此函数返回一个新集合,该集合包含回调返回True的所有值或如果未提供回调则转换为True的所有值。
以下示例程序旨在说明PHP中的Ds \ Set::filter()函数:
程序1:
<?php
// Create new set
$set = new \Ds\Set([10, 20, 30, 40, 50]);
// Display new set using filter function
var_dump($set->filter(function($val) {
return $val % 4 == 0;
}));
?>
输出:
object(Ds\Set)#3 (2) { [0]=> int(20) [1]=> int(40) }
程序2:
<?php
// Create new set
$set = new \Ds\Set([2, 5, 4, 8, 3, 9]);
// Display new set using filter function
var_dump($set->filter(function($val) {
return $val;
}));
?>
输出:
object(Ds\Set)#3 (6) { [0]=> int(2) [1]=> int(5) [2]=> int(4) [3]=> int(8) [4]=> int(3) [5]=> int(9) }
参考: https://www.php.net/manual/en/ds-set.filter.php
相关用法
- PHP Ds\Map filter()用法及代码示例
- PHP Ds\Vector filter()用法及代码示例
- PHP Ds\Deque filter()用法及代码示例
- PHP Imagick filter()用法及代码示例
- PHP Ds\Sequence filter()用法及代码示例
- CSS filter属性用法及代码示例
- CSS backdrop-filter用法及代码示例
- ES6 Array filter()用法及代码示例
注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | Ds\Set filter() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。