PHP Warning: Unknown: It is not safe to rely on the system's timezone settings.
PHP로 코드를 짜다가 date 함수를 사용한다던가,
grep으로 본문 내용을 검색할 때 아래와 같은 오류가 뜬다면 다음과 같이 조치하라.
[root@ns page]# php -i | grep ^include
include_path => .:/usr/share/pear:/usr/share/php => .:/usr/share/pear:/usr/share/php
PHP Warning: Unknown: It is not safe to rely on the system's timezone settings. You are *required* to use the dateone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still gethis warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but pleasdate.timezone to select your timezone. in Unknown on line 0
▼ php.ini 파일에서 timezone 설정
1) php.ini 설정파일을 vi 편집기로 편집
#vi /etc/php.ini
2) /date.timezone 을 찾아 ; 주석을 제거하고 Asia/Seoul 을 입력 후 저장하고 나온다
...
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = Asia/Seoul
...
3) 아파치 재시작
#systemctl restart httpd
'IT > php' 카테고리의 다른 글
[PHP] php 조건문 - switch 문 (0) | 2023.01.26 |
---|---|
[PHP] php 조건문 if 문, if else문, elseif 문 (0) | 2023.01.25 |
[PHP] PHP 주석 (0) | 2023.01.25 |
[PHP] urlencode - 문자열 URL 인코딩 함수 (0) | 2019.10.29 |
PHP Mysql 연결 확인 (1) | 2019.10.21 |
댓글