Skip to content

Instantly share code, notes, and snippets.

@elminson
Last active July 11, 2020 00:45
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 elminson/9c5f87cad415fa4efa6783156f0aa4ab to your computer and use it in GitHub Desktop.
Save elminson/9c5f87cad415fa4efa6783156f0aa4ab to your computer and use it in GitHub Desktop.
function getWaterState($degrees)
{
$stateMessage = 'This is liquid water';
if ($degrees < 0) {
$stateMessage = 'This is solid ice';
}
if ($degrees > 100) {
$stateMessage = 'This is gaz water';
}
return $stateMessage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment