在某些時候需要計算數組中所有元素的乘積。執行此操作的最基本方法是遍曆所有元素並計算乘積,但是PHP為我們提供了內置函數來執行此操作。 array_product()是PHP中的內置函數,用於查找數組中所有元素的乘積。
用法:
array_product($array)
參數:該函數僅使用一個參數$array,該參數指向我們希望獲取其元素乘積的輸入數組。
返回值:array_product()函數根據數組元素的性質返回整數或浮點值。
例子:
Input : array = (5, 8, 9, 2, 1, 3, 6) Output : 12960 Input : array = (3.2, 4.8, 9.1, 4.36, 1.14) Output : 694.7426304
以下示例程序旨在說明array_product()函數的工作方式:
- 當傳遞給array_product()函數的數組僅包含整數值時,array_product()函數將返回一個整數值,該整數值等於傳遞給它的數組所有元素的乘積。
<?php // PHP function to illustrate the use // of array_product() // Return Integer number function Product($array) { $result = array_product($array); return($result); } $array = array(5, 8, 9, 2, 1, 3, 6); print_r(Product($array)); ?>
輸出:
12960
- 當傳遞給array_product()函數的數組包含整數和浮點值時,則array_product()函數將返回一個浮點值,該值等於傳遞給它的數組所有元素的乘積。
<?php // PHP function to illustrate the use of // array_product() function Product($array) { $result = array_product($array); return($result); } $array = array(3.2, 4.8, 9.1, 4.36, 1.14); print_r(Product($array)); ?>
輸出:
694.7426304
參考:
http://php.net/manual/en/function.array-product.php
相關用法
- p5.js sq()用法及代碼示例
- d3.js d3.map.has()用法及代碼示例
- PHP next()用法及代碼示例
- p5.js day()用法及代碼示例
- p5.js pow()用法及代碼示例
- CSS var()用法及代碼示例
- d3.js d3.map.set()用法及代碼示例
- PHP pow( )用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- p5.js str()用法及代碼示例
注:本文由純淨天空篩選整理自Chinmoy Lenka大神的英文原創作品 PHP | array_product() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。