Skip to content

Instantly share code, notes, and snippets.

@gongo
Created September 7, 2010 06:29
Show Gist options
  • Save gongo/567955 to your computer and use it in GitHub Desktop.
Save gongo/567955 to your computer and use it in GitHub Desktop.
/**
* $val は 0,1,2 のいずれかが入る
*/
function val2str ($val) {
if ($val > 0) {
if ($val >= 2) {
$str = "ほげ";
} else if ($val >= 1) {
$str = "ふが";
}
} else {
$str = "ごんご";
}
return $str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment