본문 바로가기
Develop/PHP

PHP timezone 설정방법 date(): It is not safe to rely on the system's timezone settin

by bellsilver7 2020. 2. 26.
728x90

안녕하세요. 은은한 개발자입니다.

[Error]
A PHP Error was encountered
Severity: Warning
Message: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone.

date() 함수를 사용할 때 "date(): It is not safe to rely on the system's timezone settings." 와 같은 에러를 보신 경우가 있으신가요? 타임존 설정이 되어있지 않은 경우입니다. 타임존 설정 방법은 아래의 두가지 방법을 활용해 볼 수 있습니다.

설정파일 수정

date.timezone = Asia/Seoul

위와 같이 php.ini 파일에서 date.timezone 을 찾아 Asia/Seoul로 값을 설정합니다.

 

코드삽입

date_default_timezone_set(‘Asia/Seoul’);
PHP 소스에 이렇게 코드를 넣어주는 방법도 있습니다.

 

728x90

댓글