Php array function sequence: array_sum ()-calculate the sum of array element values _ php skills

Source: Internet
Author: User
The array_sum () function returns the sum of all values in the array. If all values are integers, an integer is returned. If one or more of the values are floating-point numbers, the return value is floating-point numbers. Array_sum () definition and usage
The array_sum () function returns the sum of all values in the array.

If all values are integers, an integer is returned. If one or more of the values are floating-point numbers, the return value is floating-point numbers.

In versions earlier than PHP 4.2.1, the input array itself is modified to convert the string value to a value (in most cases, it is converted to zero, depending on the specific system ).

Syntax
Array_sum (array)
Parameter description
Array is required. Specifies the input array.

Example 1

The code is as follows:


$ A = array (0 => "5", 1 => "15", 2 => "25 ");
Echo array_sum ($ );
?>


Output:

45
Example 2

The code is as follows:


$ A = array (0 => 5, 1 => 15, 2 => 25 );
Echo array_sum ($ );
?>


Output:

45
Example 3

The code is as follows:


$ A = array (0 => 5, 1 => 15.5, 2 => 25 );
Echo array_sum ($ );
?>


Output:

45.5
Example 4

The code is as follows:


$ A = array (0 => 5, 1 => "15 s", 2 => 25 );
Echo array_sum ($ );
?>


Output:

45
Example 5

The code is as follows:


$ A = array (0 => 5, 1 => "s15s", 2 => 25 );
Echo array_sum ($ );
?>


Output:

30

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.