Skip to content

Instantly share code, notes, and snippets.

@GodsBoss
Created August 30, 2011 14:07
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 GodsBoss/1180970 to your computer and use it in GitHub Desktop.
Save GodsBoss/1180970 to your computer and use it in GitHub Desktop.
A PHP FizzBuzz variant.
<?php
// For the original version, see
// http://forum.golem.de/read.php?54793,2785037,2785926#msg-2785926
$a = array(0,
'fizz',
'buzz',
'fizzbuzz' ) ;
for( $i=1; $i<101; $i++ ) {
$a['00'] = $i ;
print( $a[!($i%5)+2*!($i%3)] . "\n") ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment