Skip to content

Instantly share code, notes, and snippets.

@camfindlay
Created February 28, 2014 03:54
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 camfindlay/9264915 to your computer and use it in GitHub Desktop.
Save camfindlay/9264915 to your computer and use it in GitHub Desktop.
Happy Birthday SilverStripe!
<?php
$string = '';
for ($i = 0; $i < 4; $i++) {
$string .= "Happy birthday ";
if ($i != 2) {
$string .= "to you!\n";
} else {
$string .= "dear %s!\n";
}
}
print sprintf($string, 'SilverStripe');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment