개발자의 하루

date(): It is not safe to rely on the system's timezone settings. 본문

Server

date(): It is not safe to rely on the system's timezone settings.

단독질주 2017. 6. 9. 01:25
반응형


PHP Warning:  date(): It is not safe to rely on the system's timezone settings.

PHP Warning:  mktime(): It is not safe to rely on the system's timezone settings.

date, mktime 등 날자 함수에서 나오는 에러로 php.ini 에서 타임존을 설정하면 해결됩니다.


소스코드에

date_default_timezone_set('Asia/Seoul');


넣어도 되지만 php.ini설정에서 아에 설정하는 편이 편리합니다.

[Date]

date.timezone = Asia/Seoul


혹시나 다른 나라로 설정하려면 아래 URL을 참고 하시면 됩니다.







반응형

'Server' 카테고리의 다른 글

client denied by server configuration  (0) 2017.07.21
VMware Bridged vs NAT 차이  (0) 2017.06.20
.htaccess: RewriteEngine not allowed here  (0) 2017.06.08
예전 PHP 파일 다운받기  (0) 2017.06.05
APM설치-Apache (CentOS 6.9)  (0) 2017.06.02