Skip to content

Instantly share code, notes, and snippets.

@Goryudyuma
Created April 12, 2018 10:12
Show Gist options
  • Save Goryudyuma/a540453353895d20ce119e44ca6afe41 to your computer and use it in GitHub Desktop.
Save Goryudyuma/a540453353895d20ce119e44ca6afe41 to your computer and use it in GitHub Desktop.
<?php
$i = 1;
while(true):
if($i%15 === 0):
echo 'FizzBuzz';
elseif($i%3 === 0):
echo 'Fizz';
elseif($i%5 === 0):
echo 'Buzz';
else:
echo $i;
endif;
echo PHP_EOL;
$i++;
endwhile;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment