PHP Warning: date() [<a href='function.date'>function.date</a>]: 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 'Asia/Seoul' for 'KST/9.0/no DST' ....
date함수 사용시 이런 에러메시지가 뜨는 경우가 있다.
이 에러는 php.ini에 타임존 세팅이 안되어 있을경우 뜨는데, 해결방법은 php.ini에서 타임존 세팅만 해주면 간단히 해결된다.
[Date]
; Defines the default timezone used by the date functions
;date.timezone = <-- 이부분을 주석을 풀어주고 타임존 설정을 해준다.
date.timezone = Asia/Seoul
위와같이 설정해준 후, 서버를 재시작 해주면 끝.
반응형
'PHP' 카테고리의 다른 글
$_SERVER 에 대해 알아보자 (0) | 2013.05.03 |
---|---|
php에서 자바스크립트로 배열 보내기 (0) | 2013.05.03 |
기상청 날씨 연동 (0) | 2013.04.30 |
php 메일 utf-8로 보내기 (0) | 2013.04.30 |
php 현재 생성되어있는 변수 확인 (0) | 2013.04.30 |