Ds \ Vector::map()函數是PHP中的內置函數,在應用於向量中的每個值之後,該函數用於返回回調的結果。
用法:
Ds\Vector public Ds\Vector::map( $callback )
參數:該函數接受將應用於每個向量元素的單個參數$callback。
返回值:將回調應用於向量中的每個值之後,此函數將返回向量。
以下示例程序旨在說明PHP中的Ds \ Vector::map()函數:
程序1:
<?php
// Create new Vector
$vector = new \Ds\Vector([1, 2, 3, 4, 5]);
// Display the Vector element after
// applying the callback function
print_r($vector->map(function($value) {
return $value * 10;
}));
?>
輸出:
Ds\Vector Object ( [0] => 10 [1] => 20 [2] => 30 [3] => 40 [4] => 50 )
程序2:該程序顯示了map()函數的實現,該函數針對滿足回調條件的每個元素在向量中設置1。
<?php
// Create new Vector
$vector = new \Ds\Vector([10, 20, 30, 40, 50]);
// Display the Vector element after
// applying the callback function
print_r($vector->map(function($value) {
return $value <= 30;
}));
?>
輸出:
Ds\Vector Object ( [0] => 1 [1] => 1 [2] => 1 [3] => [4] => )
參考: http://php.net/manual/en/ds-vector.map.php
相關用法
- p5.js str()用法及代碼示例
- p5.js min()用法及代碼示例
- PHP end()用法及代碼示例
- PHP sin( )用法及代碼示例
- PHP cos( )用法及代碼示例
- p5.js hue()用法及代碼示例
- PHP pos()用法及代碼示例
- p5.js hex()用法及代碼示例
- p5.js red()用法及代碼示例
- p5.js tan()用法及代碼示例
- p5.js log()用法及代碼示例
- p5.js sin()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 PHP | Ds\Vector map() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。