PHP array_sum() 函数

PHP 教程 · 2019-01-22 14:28:50

实例

返回数组中所有值的和(5+15+25):

<?php
$a=array(5,15,25);
echo array_sum($a);
?>

定义和用法

array_sum() 函数返回数组中所有值的和。

语法

array_sum(array)

参数 描述
array 必需。规定数组。

技术细节

返回值: 返回数组中所有值的和。
PHP 版本: 4.0.4+
更新日志: PHP 4.2.1 之前的版本修改了传入的数组本身,将其中的字符串值转换成数值(大多数情况下都转换成了零,根据具体值而定)。

更多实例

实例 1

返回数组中所有值的和(52.2+13.7+0.9):

<?php
$a=array("a"=>52.2,"b"=>13.7,"c"=>0.9);
echo array_sum($a);
?>

点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html

查看所有标签

Python Data Structures and Algorithms

Python Data Structures and Algorithms

Benjamin Baka / Packt Publishing / 2017-5-30 / USD 44.99

Key Features A step by step guide, which will provide you with a thorough discussion on the analysis and design of fundamental Python data structures.Get a better understanding of advanced Python c......一起来看看 《Python Data Structures and Algorithms》 这本书的介绍吧!

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具