Is there a simple way to get the total of all items in a PHP array?
Also, how can I output the contents of an array for debugging purposes?
|
|
|
What you are looking for is array_sum http://uk.php.net/manual/en/function.array-sum.php array_sum — Calculate the sum of values in an array To output the contents of an array use
|
||||
|
PHP has a great documentation site, be sure to reference it. |
|||||
|
|
if you just need it for debugging |
|||
|
|
|
I'm not sure whether you mean the total number of items or the total of all items (in the case of numeric values)...
|
|||
|
|