Ds \ Sequence::map()函數是PHP中的一個內置函數,在對每個值應用回調函數後將返回結果。
用法:
Ds\Sequence abstract public Ds\Sequence::map( $callback )
參數:該函數接受單個參數$callback。回調適用於序列的每個值。
返回值:應用每個值後,此函數返回回調。
以下示例程序旨在說明PHP中的Ds \ Sequence::map()函數:
程序1:
<?php
// Create new sequence
$seq = new \Ds\Vector( [4, 8, 12, 16] );
// Use map() function and display it
var_dump($seq->map(function($val) {
return $val * 3;
}));
?>
Output: object(Ds\Vector)#3 (4) { [0]=> int(12) [1]=> int(24) [2]=> int(36) [3]=> int(48) }
程序2:
<?php
// Create new sequence
$seq = new \Ds\Vector([12, 15, 18, 20]);
// Use map() function and display it
var_dump($seq->map(function($val) {
return $val / 3;
}));
?>
輸出:
object(Ds\Vector)#3 (4) { [0]=> int(4) [1]=> int(5) [2]=> int(6) [3]=> float(6.6666666666667) }
參考: http://php.net/manual/en/ds-sequence.map.php
相關用法
- PHP exp()用法及代碼示例
- d3.js d3.lab()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.hcl()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP abs()用法及代碼示例
- PHP Ds\Set xor()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP tan( )用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP next()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
注:本文由純淨天空篩選整理自Mahadev99大神的英文原創作品 PHP | Ds\Sequence map() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。