php
날짜(date)의 한글요일 구하기
- 관리자 2020.12.24 인기
-
- 9,735
- 0
function find_week($date) {
$week_array = array("일","월","화","수","목","금","토");
$week_print = $week_array[date('w', strtotime($date))];
return $week_print;
}
echo find_week('2020-12-25');
- 이전글사진의 회전을 자동으로 되돌려주는 소스2021.04.21
- 다음글url파일 이름만 추출2020.09.18
댓글목록
등록된 댓글이 없습니다.