Skip to content

Instantly share code, notes, and snippets.

@rizkhal
Created July 20, 2020 12:48
Show Gist options
  • Save rizkhal/1f32574828dc1f07a50a1d28539b13cb to your computer and use it in GitHub Desktop.
Save rizkhal/1f32574828dc1f07a50a1d28539b13cb to your computer and use it in GitHub Desktop.
<?php
echo "Input number: \n";
while ($input = trim(fgets(STDIN))) {
$args[] = $input;
if ($input == "=") {
print(array_sum($args));
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment