[ERROR] Warning: Use of undefined constant G5_TIMEZONE - assumed 'G5_TIMEZONE' (this will throw an Error in a future version of PHP) in

gyrud02·2022년 1월 21일
0

오류(ERROR)

목록 보기
9/27
Warning: Use of undefined constant G5_TIMEZONE - assumed 'G5_TIMEZONE' (this will throw an Error in a future version of PHP) in
if(defined(G5_TIMEZONE)) sql_query(" set time_zone = '".G5_TIMEZONE."'");

위 코드를 아래와 같이 수정한다. (따옴표)

if(defined('G5_TIMEZONE')) sql_query(" set time_zone = '".G5_TIMEZONE."'");
  • 인수부분을 ' '문자로 묶지 않으면 상수로 인식. 경고를 표시한다.

출처 : https://sir.kr/g5_tip/10790

profile
Back-End Engineer

0개의 댓글