Last active
August 2, 2019 17:01
-
-
Save kylekatarnls/061060b95a0e62ed4c14a1f799e9f53d to your computer and use it in GitHub Desktop.
If else
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function getWaterState($degrees) | |
{ | |
if ($degrees < 0) { | |
return 'This is solid ice'; | |
} elseif ($degrees > 100) { | |
return 'This is gaz water'; | |
} else { | |
return 'This is liquid water'; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function getWaterState($degrees) | |
{ | |
if ($degrees < 0) { | |
return 'This is solid ice'; | |
} | |
if ($degrees > 100) { | |
return 'This is gaz water'; | |
} | |
return 'This is liquid water'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment