Skip to content

Instantly share code, notes, and snippets.

@ichsanputr
Created June 27, 2025 12:19
Show Gist options
  • Select an option

  • Save ichsanputr/8ace012a8182d3d7d0ec960885077910 to your computer and use it in GitHub Desktop.

Select an option

Save ichsanputr/8ace012a8182d3d7d0ec960885077910 to your computer and use it in GitHub Desktop.
<?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