메뉴 건너뛰기

프로그램언어

2017.04.13 18:27

PHP 날짜 함수

조회 수 17730 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
테스트 일 : 2011년 9월 7일

형식 : string date(string $format [, int $timestamp] )
  format parameters
    d => 01 to 31
    D => Mon through Sun
    w => 0(sunday) through 6(saturday)
    z => 0 through 365
    m => 01 through 12 (month)
    M => Jan through Dec
    t => 28 through 31 ( last day of month , 달 마지막 날 )
    Y => 1999 or 2011
    h => 01 through 12 (12 hour)
    H => 00 through 23 (24 hour)
    i => 00 to 59 (minutes)
    s => 00 through 59 (seconds)

오늘출력
echo date("Ymd");     출력->       20110907

오늘로 부터 3일 후
echo date("Y-m-d", strtotime("+3 day"));      출력->       2011-09-10

오늘로 부터 3일 전
echo date("Y-m-d", strtotime("-3 day"));      출력->       2011-09-04

오늘로 부터 일주일 전
echo date("Y-m-d", strtotime("-1 week"));      출력->       2011-08-31

유닉스 timestamp 값을 리턴
echo strtotime("now");      출력->      1315389514

특정일을 구하기
$oneweekbefore = strtotime("-1 week");
echo date("Y-m-d", strtotime("7 day", $oneweekbefore));      출력->       2011-09-07

특정일 구하기2-이번달 마지막날
mktime(시,분,초,월,일,년도)
echo date('t', mktime(0,0,0,9,7,2011);      출력->       30

이번주 월요일 구하기
$now1 = date("w");
$m = $now1-1;
echo date("Y-m-d", strtotime("-$m day"));


  1. PHP error 메시지 출력

    Date2015.04.14 Views20955
    Read More
  2. PHP EXCEL export시 시트 이름 지정하여 여러 시트에 데이터 쓰기

    Date2017.03.06 Views18319
    Read More
  3. PHP http -> https 로 전환

    Date2023.01.12 Views262
    Read More
  4. PHP http 를 https 로 전환(redirect), http->https

    Date2019.02.19 Views2204
    Read More
  5. PHP Mcrypt 라이브러리를 활용한 암호화 시스템

    Date2016.12.22 Views20002
    Read More
  6. PHP Notice: Use of undefined constant ... assumed ... 오류

    Date2021.03.26 Views335
    Read More
  7. PHP SimpleHtmlDom Parser로 HTML 파싱하기

    Date2023.01.12 Views249
    Read More
  8. PHP split()와 explode()의 차이점

    Date2018.10.27 Views3556
    Read More
  9. PHP str_replace php 문자열치환

    Date2023.01.12 Views221
    Read More
  10. PHP switch 문

    Date2015.04.14 Views21021
    Read More
  11. php www 붙이기

    Date2023.01.12 Views255
    Read More
  12. PHP XML 문서파싱 (SAX 방식 , DOM 방식)

    Date2018.10.27 Views3612
    Read More
  13. PHP ZIP 압축파일 만들기

    Date2023.01.12 Views288
    Read More
  14. PHP 가변변수 $$

    Date2019.02.19 Views1472
    Read More
  15. php 간단 심플한 달력만들기

    Date2023.01.12 Views264
    Read More
  16. PHP 날짜 함수

    Date2017.04.13 Views17730
    Read More
  17. PHP 날짜, 시간 관련 함수. date(), mktime()

    Date2017.03.06 Views16741
    Read More
  18. PHP 날짜/시간 정리

    Date2017.03.07 Views18672
    Read More
  19. php 내장함수

    Date2017.03.07 Views17050
    Read More
  20. PHP 네이버블로그 원격 글쓰기 API 소스

    Date2018.02.09 Views12522
    Read More
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved