AH02429: Response header name 'Last-Modified ' 에러는 문서 상단에 header로 Ladt-Modified를 설정할 때 나타난다.
header("Last-Modified: " .gmdate("D, M Y H : i: s") . " KST"); 형식으로 보통 많이 쓰는데
"Last-Modified: " 에서 공백이 들어가 나타나는 경우가 많다. 그러므로 아래와 같이 바꿔주자.
예시)
header("Last-Modified: ".gmdate("D, M Y H : i: s") . " KST"); // Bad;
header("Last-Modified:".gmdate("D, M Y H : i: s") . " KST"); // Good!
'Language > PHP' 카테고리의 다른 글
[Deprecated] ereg() , eregi() 대체 (0) | 2020.03.10 |
---|---|
[Deprecated] ereg_replace , eregi_replace() 대체 (0) | 2020.03.10 |
PHP Fatal error: Uncaught Error: Call to undefined function (0) | 2020.03.10 |
PHP Fatal error: Cannot redeclare function() (previously declared in ~) (0) | 2020.03.10 |
PHP Warning: sizeof(): Parameter must be an array or an object that implements Countable in (0) | 2020.03.10 |