Skip to content

Instantly share code, notes, and snippets.

@ralbear
Last active November 25, 2020 19:52
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 ralbear/2e07289928d3654fac0de299051d71cf to your computer and use it in GitHub Desktop.
Save ralbear/2e07289928d3654fac0de299051d71cf to your computer and use it in GitHub Desktop.
Test
function calculate()
{
$day = date("d");
$month = date("F");
$year = date("Y");
return sprintf('Today is %s of %s of %s', $day, $month, $year);
}
return calculate();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment