Skip to content

Instantly share code, notes, and snippets.

@aerith
Forked from sorah/gist:573131
Created September 10, 2010 05:15
Show Gist options
  • Save aerith/573142 to your computer and use it in GitHub Desktop.
Save aerith/573142 to your computer and use it in GitHub Desktop.
<?php
array_map(function ($i) { $s=($i%3==0?'Fizz':'').($i%5==0?'Buzz':''); $s=($s=="")?$i:$s; print "${s}\n"; }, range(1,100));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment