Skip to content

Instantly share code, notes, and snippets.

@fajarwz
Created June 25, 2021 15:12
Show Gist options
  • Save fajarwz/e11877855591aae3c111b9377c522603 to your computer and use it in GitHub Desktop.
Save fajarwz/e11877855591aae3c111b9377c522603 to your computer and use it in GitHub Desktop.
Fizz Buzz using PHP
<?php
function fizzBuzz($total) {
for($i = 1; $i <= $total; $i++) {
if($i % 3 == 0 && $i % 5 == 0) {
$result .= "Fizz Buzz\n";
}
elseif($i % 3 == 0) {
$result .= "Fizz\n";
}
elseif($i % 5 == 0) {
$result .= "Buzz\n";
}
else {
$result .= $i."\n";
}
}
return $result;
}
echo fizzBuzz(100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment