Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 17, 2019 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/b33a76ff6ea93e3a413ea3406124d323 to your computer and use it in GitHub Desktop.
Save parzibyte/b33a76ff6ea93e3a413ea3406124d323 to your computer and use it in GitHub Desktop.
Sumar arreglo con PHP
<?php
// https://parzibyte.me/blog
$numeros = array(12, 34, 554, 123);
$suma = 0;
foreach ($numeros as $numero) {
$suma += $numero;
}
echo "Suma: $suma";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment