Skip to content

Instantly share code, notes, and snippets.

@jrtashjian
Created May 24, 2011 16:23
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 jrtashjian/989052 to your computer and use it in GitHub Desktop.
Save jrtashjian/989052 to your computer and use it in GitHub Desktop.
FizzBuzz
<?php
while( $i < 100 )
{
$i++;
if( $i % 15 == 0 ) { echo "FizzBuzz\n"; continue; }
if( $i % 3 == 0 ) { echo "Fizz\n"; continue; }
if( $i % 5 == 0 ) { echo "Buzz\n"; continue; }
echo "$i\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment