Answers for "add values of all elements of an array in php"

PHP
102

php append to array

$myArr = [1, 2, 3, 4];

array_push($myArr, 5, 8);
print_r($myArr); // [1, 2, 3, 4, 5, 8]

$myArr[] = -1;
print_r($myArr); // [1, 2, 3, 4, 5, 8, -1]
Posted by: Guest on January-21-2020
6

php sum array elements

<?php
$a=array(5,15,25);
echo array_sum($a);
?>
Posted by: Guest on August-06-2020

Code answers related to "add values of all elements of an array in php"

Browse Popular Code Answers by Language