Skip to content

Instantly share code, notes, and snippets.

@jeonghwan-kim
Created October 12, 2013 10:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeonghwan-kim/6948364 to your computer and use it in GitHub Desktop.
Save jeonghwan-kim/6948364 to your computer and use it in GitHub Desktop.
요일구하기
function get_day_of_week($date) {
$day = array('일','월','화','수','목','금','토');
$day_of_week = $day[date('w', strtotime($date))];
return $day_of_week;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment