当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Map filter()用法及代码示例


Ds \ Map::filter()函数是PHP中的内置函数,可用于使用filter函数创建新Map。

用法:

Ds\Map public Ds\Map::filter( $callback )

参数:它包含一个参数$callback,它是一个可选参数,如果应包含该值,则返回True,否则返回False。


返回值:此函数返回一个新映射,其中包含回调返回True或如果未提供回调则转换为True的所有值的所有对。

以下示例程序旨在说明PHP中的Ds \ Map::filter()函数:

程序1:

<?php  
// PHP program to illustrate the filter()  
// function of Ds\map  
  
// Creating a Map  
$map = new \Ds\Map([ 
    1 => "Welcome", 
    2 => "to", 
    3 => "Geeks",   
    4 => "for", 
    5 => "Geeks"]); 
              
  
// Display new sequence using filter function  
var_dump($map->filter(function($key, $val) {  
    return $key % 3 == 0;  
}));  
  
?> 
输出:
object(Ds\Map)#3 (1) {
  [0]=>
  object(Ds\Pair)#2 (2) {
    ["key"]=>
    int(3)
    ["value"]=>
    string(5) "Geeks"
  }
}

程序2:

<?php  
// PHP program to illustrate the filter()  
// function of Ds\map  
  
// Creating a Map  
$map = new \Ds\Map([ 
        1 => 10,  
        2 => 20, 
        3 => 30,  
        4 => 40, 
        5 => 50]);  
              
// Display new sequence using filter function  
var_dump($map->filter(function($key, $val) {  
    return $val % 20 == 0;  
}));  
  
?> 
输出:
object(Ds\Map)#3 (2) {
  [0]=>
  object(Ds\Pair)#2 (2) {
    ["key"]=>
    int(2)
    ["value"]=>
    int(20)
  }
  [1]=>
  object(Ds\Pair)#4 (2) {
    ["key"]=>
    int(4)
    ["value"]=>
    int(40)
  }
}

参考: https://www.php.net/manual/en/ds-map.filter.php



相关用法


注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | Ds\Map filter() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。