Created
March 20, 2017 02:24
-
-
Save Theaxiom/fddd952c8a12903c169542aecc921d1d to your computer and use it in GitHub Desktop.
PHP yes/no function
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
/** | |
* @param $bool | |
* @return string | |
*/ | |
function yn($bool) | |
{ | |
return ($bool)?'Yes':'No'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment