Skip to content

Instantly share code, notes, and snippets.

@calina-c
Created November 29, 2016 17:01
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 calina-c/9fae80512167d4afe7a3ff679c4f96ea to your computer and use it in GitHub Desktop.
Save calina-c/9fae80512167d4afe7a3ff679c4f96ea to your computer and use it in GitHub Desktop.
return sprintf(
“The user %s %s has a balance of $%f.”,
$firstName,
$lastName,
$balance
);
return "The user " . $firstName . " has a balance of $" . $balance . ".";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment