Skip to content

Instantly share code, notes, and snippets.

@zakki
Created September 11, 2012 12:34
Show Gist options
  • Select an option

  • Save zakki/3698098 to your computer and use it in GitHub Desktop.

Select an option

Save zakki/3698098 to your computer and use it in GitHub Desktop.
let _ =
<?php
for ($i = 1; $i <= 100; $i++) {
if ($i % 3 == 0) {
?>
print_string "Fizz";
<?php
}
if ($i % 5 == 0) {
?>
print_string "Buzz";
<?php
}
if ($i % 3 != 0 && $i % 5 != 0) {
echo "print_int $i;";
}
?>
print_newline ();
<?php
}
?>
();;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment