date
-
[Java] 자바 기본 API - Date, Calendar ClassCSE/Java 2016. 4. 16. 16:13
자바 기본 API는 여러 절로 구성되어 있습니다. IntroObject ClassObjects ClassSystem ClassClass ClassString ClassStringTokenizer, StringBuffer, StringBuilder ClassRegular Expression & Pattern ClassArrays ClassWrapper ClassMath, Random ClassDate, Calendar ClassFormat Classjava.time Package Date, Calendar Class Date 클래스 Date는 날짜를 표현하는 클래스입니다. Date 클래스는 객체 간에 날짜 정보를 주고 받을 때 주로 사용됩니다. Date 클래스에는 여러 개의 생성자가 선언되어 있지만 대부분..
-
[javascript] 20. 날짜 메소드(Date Methods) - 자바스크립트 강좌 JS / CSEWeb/JavaScript 2015. 6. 13. 14:39
JavaScript Date Methods 1. Date Get Methods MethodDescriptiongetDate()Get the day as a number (1-31)getDay()Get the weekday as a number (0-6)getFullYear()Get the four digit year (yyyy)getHours()Get the hour (0-23)getMilliseconds()Get the milliseconds (0-999)getMinutes()Get the minutes (0-59)getMonth()Get the month (0-11)getSeconds()Get the seconds (0-59)getTime()Get the time (milliseconds since ..
-
[javascript] 19. 날짜(Dates) - 자바스크립트 강좌Web/JavaScript 2015. 6. 13. 14:38
JavaScript Dates 1. Displaying Dates 1234567891011121314 document.getElementById("demo").innerHTML = Date(); Colored by Color Scriptercs 위 스크립트는 id가 demo인 요소의 html 에다가 Date()의 값을 할당하는 스크립트 입니다. 2. Creating Date Objects 날짜 객체는 날짜로 작업하는 것을 도와 줍니다. 날짜는 년, 월, 일, 시, 분, 초, 밀리초로 구성되어 있습니다. 날짜 객체는 new Date() 생성자로 생성합니다. 날짜를 초기화 하는데 4가지 방법이 존재 합니다: 123456 new Date()new Date(milliseconds)new Date(dateStri..
-
[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 필수..