년월일로 요일 구하는 함수
<?php
function get_yoil($date){
$arr = array("일", "월", "화", "수", "목", "금", "토");
return $arr[date("w", strtotime($date))];
}
echo get_yoil("2022-10-08");
date("w") : 요일의 숫자 표현 입니다.
0 : 일요일
6 : 토요일
'tech > PHP' 카테고리의 다른 글
글자 길이가 길 때 글자 줄이는 방법(...) (0) | 2023.10.18 |
---|---|
filter_var 숫자(int) 체크 (0) | 2023.10.16 |
영문, 숫자만 체크(유효성 검사) (0) | 2023.10.04 |
템플릿 언더바의 루프문(loop) #2 (0) | 2023.10.03 |
템플릿 언더바(Template Underscore) #1 (0) | 2023.10.02 |