php計算並返回數組的乘積的函數array_product()

來源:互聯網
上載者:User

執行個體

計算並返回數組的乘積:

<?php$a=array(5,5);echo(array_product($a));?>

定義和用法

array_product() Function Compute並返回數組的乘積。

文法

array_product(array)
參數 描述
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>

運行結果:

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.