PHP array_product

Posted GoodByeZ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP array_product相关的知识,希望对你有一定的参考价值。

1.函数的作用:计算数组元素的乘积

2.函数的参数:

  @params array  

3.例子:

1 <?php
2 $input = [false,true];
3 print_r(array_product($input));
4 echo "\n";
5 print_r(array_product(range(1,10)));

 

以上是关于PHP array_product的主要内容,如果未能解决你的问题,请参考以下文章

超级有用的9个PHP代码片段

PHP数组功能汇集

074-PHP数组元素相乘

PHP必用代码片段

PHP代码-psysh调试代码片段工具

超实用的php代码片段