Skip to content

Instantly share code, notes, and snippets.

@stefanosala
Created August 22, 2013 14:43
Show Gist options
  • Save stefanosala/6308133 to your computer and use it in GitHub Desktop.
Save stefanosala/6308133 to your computer and use it in GitHub Desktop.
<?php
for ($i = 1; $i <= 100; $i++) {
if ($i % 3 === 0 && $i % 5 === 0) {
echo 'FooBar';
} elseif ($i % 3 === 0) {
echo 'Foo';
} elseif ($i % 5 === 0) {
echo 'Bar';
} else {
echo $i;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment