Server/PHP
[PHP] 내가 자주쓰는 날짜/시간 관련 함수
일요일의 빙글빙글
2017. 6. 26. 17:35
| 참고하면 좋은 곳
unixtime과 지역에 따른 시간 변환해주는 사이트
내가 맞게 변환했는지 확인할 때 유용하더라.
php 클래스 및 함수 참고에 용이하더라.
| string -> unixtime
int strtotime (string $time [, int $now = time() ] )
$stringDate = '2017-06-28'; // 날짜를 적은 문자열
$unixTimeDate = strtotime($stringDate); // 1498662000
| unixtime -> Date
string date (string $format [, int $timestamp] )
$stringDate = Date('Y-m-d', $unixTimeDate); // 2017-06-28
| string -> DateTime
public __construct( [string $time = 'now' [, DateTimeZone $timezone = NULL ]])
$stringDate = '2017-06-28';
new DateTime($stringDate);