Array_sum () of the sequence of PHP array functions-_php techniques for calculating the value of an array element

Source: Internet
Author: User
Tags numeric value
Array_sum () Definition and usage
The Array_sum () function returns the sum of all the values in the array.

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

The previous version of PHP 4.2.1 modifies the passed-in array itself, converting the string value into a numeric value (which in most cases is converted to 0, depending on the specific system).

Grammar
Array_sum (Array)
Parameter description
Array required. A specified array of inputs.

Example 1
Copy Code code as follows:

<?php
$a =array (0=> "5",1=> ",2=>" "25");
echo array_sum ($a);
?>

Output:

45
Example 2
Copy Code code as follows:

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

Output:

45
Example 3
Copy Code code as follows:

<?php
$a =array (0=>5,1=>15.5,2=>25);
echo array_sum ($a);
?>

Output:

45.5
Example 4
Copy Code code as follows:

<?php
$a =array (0=>5,1=> "15s", 2=>25);
echo array_sum ($a);
?>

Output:

45
Example 5
Copy Code code as follows:

<?php
$a =array (0=>5,1=> "s15s", 2=>25);
echo array_sum ($a);
?>

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.