mkdate
-
[PHP] 22. 날짜와 시간(Date and Time) - PHP 강좌, PHP5Web/PHP 2015. 6. 13. 13:51
PHP 5 Date and Time PHP date() 함수는 날짜 또는 시간의 형식으로 사용됩니다. 1. The PHP Date() Function date() 함수는 타임스탬프 형식으로 날짜와 시간을 가독성 있는 형식으로 만듭니다. 문법: date(format,timestamp) ParameterDescriptionformatRequired. Specifies the format of the timestamptimestampOptional. Specifies a timestamp. Default is the current date and time [ 출처: W3Schools ] * 타임스탬프는 문자의 연속이고, 매번 발생하는 정확한 날짜나 시간을 보여줍니다. 2. Get a Simple Date 필수..