2020. 8. 20. 00:54ㆍPHP
참고자료: 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 이따구로 생긴거
'PHP' 카테고리의 다른 글
PHP sessino_write_close error (0) | 2020.09.10 |
---|---|
php Maximum execution time of 30 seconds exceeded (0) | 2020.08.25 |
php 다차원 배열 정렬 multidimensional array sort by value (0) | 2020.08.10 |
PHP curl 타고타고 크롤링 (navigating and scraping multiple pages) (0) | 2020.07.17 |
vscode html 속 php 하이라이트 (부제: vscode syntax highlighter) (0) | 2020.07.09 |