当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > array_product() 函数
The array_product() function calculates and returns the product of an array.
array_product()函数计算一个数组中值得乘积,并返回这个乘积。
array_product(array) |
Parameter参数 | Description描述 |
---|---|
array | Required. Specifies an array 必要参数。指定一个数组 |
<?php $a=array(5,5); echo(array_product($a)); ?> |
The output of the code above will be:
上述代码将输出下面的结果:
25 |