php - date 함수 사용
2024-05-24 15:10
778
0
0
0
본문
접기
[ ▼ 작성자 참고 Source ]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | // 현재 날짜와 시간을 가져옵니다. $currentDateTime = date ( "Y-m-d H:i:s" ); // 연, 월, 일, 시간, 분, 초를 각각 가져옵니다. $year = date ( "Y" , strtotime($currentDateTime)); $month = date ( "m" , strtotime($currentDateTime)); $day = date ( "d" , strtotime($currentDateTime)); $hour = date ( "H" , strtotime($currentDateTime)); $minute = date ( "i" , strtotime($currentDateTime)); $second = date ( "s" , strtotime($currentDateTime)); // 출력합니다. echo "연: " . $year . "<br>" ; echo "월: " . $month . "<br>" ; echo "일: " . $day . "<br>" ; echo "시간: " . $hour . "<br>" ; echo "분: " . $minute . "<br>" ; echo "초: " . $second . "<br>" ; |
본문
위 코드는 현재 날짜와 시간을 가져와서 각각 연, 월, 일, 시간, 분, 초로 나누어 출력합니다
0
0
로그인 후 추천 또는 비추천하실 수 있습니다.
댓글목록0