PHP에서 현지 시간을 설정하는 방법: 1. 헤더에서 "date_default_timezone_set()"를 사용하여 기본 시간대를 베이징 시간으로 설정합니다. 2. php.ini의 "date.timezone" 값을 PRC로 설정합니다.
이 기사의 운영 환경: windows7 시스템, PHP7.1 버전, DELL G3 컴퓨터
php 현지 시간을 설정하는 방법은 무엇입니까?
php 시간은 local
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\news\file.php on line 17 。
로 설정되어 있습니다. 이는 PHP에 걸리는 시간이 그리니치 표준시이므로 현지 시간과 다르기 때문입니다. 그리니치 표준시와 베이징 시간의 차이는 약 8시간입니다. 다음 방법에 따라 해결할 수 있습니다.
1. 페이지 헤더에서 date_default_timezone_set()을 사용하여 기본 시간대를 베이징 시간으로 설정합니다. 즉,
2. php.ini의 date.timezone 값을 PRC로 설정합니다. date.timezone=PRC 동시에 이 코드 줄의 주석 처리를 제거합니다. 즉, 앞의 세미콜론을 제거합니다. .
추천 학습: "PHP 비디오 튜토리얼"
위 내용은 PHP에서 현지 시간을 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!