Created
June 27, 2025 12:18
-
-
Save ichsanputr/04668547bcbef50ddbb6c6716dfb3b6e to your computer and use it in GitHub Desktop.
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 | |
$요일 = "월요일"; | |
switch ($요일) { | |
case "월요일": | |
case "화요일": | |
echo "주 초반이네요, 화이팅!"; | |
break; | |
case "금요일": | |
echo "불금이다!"; | |
break; | |
default: | |
echo "평범한 하루입니다."; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment