PHP에서 현재 날짜를 가져올 때 경고를 제거하는 방법: 1. php.ini에서 date.timezone 값을 PRC로 설정합니다. 2. date.timezone=PRC 코드 이전의 주석을 취소합니다.
이 기사의 운영 환경: windows10 시스템, php 7, thinkpad t480 컴퓨터.
현재 날짜를 가져올 때 다음과 유사한 경고가 발생할 수 있습니다.
PHP Warning: 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 ‘UTC’ for ‘8.0/no DST’ instead in D:\PHPWEB ews\file.php on line 17 。
PHP에 걸리는 시간은 그리니치 표준시이므로 현지 시간과 다르기 때문입니다. 그리니치 표준시와 베이징 시간의 차이는 약 8시간입니다. 다음 방법을 사용하면 문제를 해결할 수 있습니다.
1. 페이지 헤더의 date_default_timezone_set()을 사용하여 기본 시간대를 베이징 시간으로 설정합니다.
2. php.ini의 date.timezone 값을 PRC로 설정합니다. 설정 후에는 date.timezone=PRC 또는 date.timezone = Asia/Shanghai가 됩니다. 즉, 이전 세미콜론을 제거하면 됩니다.
그런 다음 아파치를 다시 시작하세요.
추천 학습: php training
위 내용은 PHP에서 현재 날짜를 가져올 때 경고를 제거하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!