php strtotime, date, mktime, datetime, timestamp

2020. 8. 20. 00:54PHP

728x90

참고자료: https://www.edureka.co/blog/strtotime-in-php/#Whatisstrtotime()?

https://offbyone.tistory.com/38

 

strtotime('timestring', '기준시간') : textual date time description to UNIX TIMESTAMP

strtotime('timestring', '기준시간')의 형태로 사용한다.

예를 들어 strtotime('2020-12-13')은 1607846400라는 TIMESTAMP 값을 리턴한다.

timestring의 형식은 여러가지로 쓸 수 있다.

strtotime('+1 week')은 현재로부터 1주 후의 TIMESTAMP,

strtotime('2020-08-15 +1 months') 은 2020-08-15로부터 1달 후의 TIMESTAMP를 반환한다.

 

저 숫자뭉탱이를 어디다 쓰는가?

 

date()에 쓴다.

 

date('format string', '기준시간 TIMESTAMP') : 주어진 timestamp 또는 현재 로컬 시간을 format string에 따라 포맷팅한 문자열을 반환한다.

 

 

그럼 mktime()은 뭔데요..

 

mktime(시, 분, 초, 월, 일, 연) : returns TIMESTAMP

 

 

근데 datetime이랑 timestamp는 뭐야.. 무슨 차이야..?

datetime: YYYY-MM-DD HH:MM:SS 이런거

timestamp: 8731383 이따구로 생긴거

728x90
반응형