Created
June 27, 2025 12:19
-
-
Save ichsanputr/8ace012a8182d3d7d0ec960885077910 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 | |
| function 인사($이름, $시간 = "낮") { | |
| if ($시간 == "아침") { | |
| return "좋은 아침이에요, $이름님!"; | |
| } elseif ($시간 == "저녁") { | |
| return "안녕히 주무세요, $이름님!"; | |
| } else { | |
| return "안녕하세요, $이름님!"; | |
| } | |
| } | |
| echo 인사("지은"); // 기본값 사용 | |
| echo 인사("민수", "아침"); // 매개변수 지정 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment