PHP-PipeArray:通过Collection Pipeline模式改进PHP数组操作

时间:2024-06-13 03:25:14
【文件属性】:

文件名称:PHP-PipeArray:通过Collection Pipeline模式改进PHP数组操作

文件大小:9KB

文件格式:ZIP

更新时间:2024-06-13 03:25:14

PHP

PipeArray PipeArray提供了一种通过Collection Pipeline模式操作数组的方法。 尽管PHP提供了许多array_ *函数,但将它们组合在一起还是有些烦人的: $ score = [ 40 , 55 , 32 , 63 ]; // add bonus and check passed score $ bonusScore = array_map ( function ( $ e ){ return intval ( sqrt ( $ e ) * 10 ); }, $ score ); $ passedScore = array_filter ( $ bonusScore , function ( $ e ){ return $ e >= 60 ; }); 使用Collection Pipeline模式更清晰: $ score = [ 40 , 55


【文件预览】:
PHP-PipeArray-master
----src()
--------Pipe.php(146B)
--------PipeArray.php(12KB)
----composer.lock(33KB)
----README.md(2KB)
----tests()
--------PipeTest.php(663B)
--------PipeArrayTest.php(3KB)
----composer.json(390B)

网友评论