Skip to content

Instantly share code, notes, and snippets.

@mllopart
Last active June 14, 2017 16:37
Show Gist options
  • Save mllopart/594418b70b4a4e42831d781821e529c2 to your computer and use it in GitHub Desktop.
Save mllopart/594418b70b4a4e42831d781821e529c2 to your computer and use it in GitHub Desktop.
From the variable input sum the integer values of it
<?php
$input = "1,2,3,4,5,6,7";
$sum = 0;
print($input);
$input_arr = explode(",", $input);
foreach($input_arr as &$inp)
{
$sum = $sum + $inp;
}
print($sum);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment