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
'Develop > PHP' 카테고리의 다른 글
코드이그나이터 formdata csrf토큰 사용 Ajax통신, The action you have requested is not allowed. (0) | 2020.02.27 |
---|---|
PHP 코드이그나이터 CSRF 토큰 사용법 (0) | 2020.02.27 |
PHP 짧은 태그 설정 short_open_tag (0) | 2020.02.26 |
PHP 업로드 사이즈 변경하는 방법 (0) | 2020.02.26 |
PHP DB연결 테스트 (0) | 2020.02.25 |
댓글