Dork's port

[cannot modify header information - headers already sent by] error 해결 방법 본문

PHP

[cannot modify header information - headers already sent by] error 해결 방법

Dork94 2018. 6. 7. 03:40


안녕하세요.


웹공부 도중 cookie를 이용하며 조회수 control 도중 setcookie 함수 부분에서 아래와 같은 오류가 생겼습니다.



cannot modify header information - headers already sent by



그래서 찾아보니 해결법은 간단합니다.


해당 코드의 php코드의 제일 상단에 아래의 코드를 추가해 주시면 해결될 것 입니다!


ob_start();



원인에 대해서는 링크를 참조하세요.




참조 : https://stackoverflow.com/questions/38028043/php-cannot-modify-header-information-headers-already-sent-by-output-started

Comments