執行個體
計算並返回數組的乘積:
<?php$a=array(5,5);echo(array_product($a));?>
定義和用法
array_product() Function Compute並返回數組的乘積。
文法
array_product(array)
技術細節
| 傳回值: |
返回一個整數或者浮點數的乘積。 |
| PHP 版本: |
5.1.0+ |
| 更新日誌: |
自 PHP 5.3.6 起,空數組的乘積為 1。在 PHP 5.3.6 之前,空數組的乘積為 0。 |
更多執行個體
執行個體 1
計算並返回數組的乘積:
<?php$a=array(5,5,2,10);echo(array_product($a));?>
執行個體1( 純數字不含字串的數組):
<?php$arr=array(2,3,4);echo array_product($arr);?>
輸出結果:24
執行個體(含字串的數組):
<!doctype html><html><head><meta charset="UTF-8"><meta http-equiv="Content-Type" content="text/hmtl; charset=utf-8" ><!--PHP中文亂碼處理--><title>php array_product()函數筆記_PHP筆記</title></head><body><?php$arr1=array("2","3","4");//"2"、"3"和"4"會被當中數字2、3和4$arr2=array("2a","3b","4");//"2a"和"3b"會被當作數字2和3$arr3=array("a2","3","4"); //"a2"會被當作數字0echo '"2","3","4":'.array_product($arr1);echo '</br>"2a","3b","4":'.array_product($arr2);echo '</br>"a2","3","4":'.array_product($arr3);?></body></html>
運行結果: