PHP utf-8 웹페이지가 euc-kr 로 보일때 Header 처리
페이지 정보
본문
웹페이지는 utf-8 로 제작됬음에도 불구하고 euc-kr 로 변환되서 보여지고, 한글이 깨져보입니다.
이때는 아래와 같이 문자셋 정의를 해주면 해결됩니다.
[ 변경전 ]
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
[ 변경후 ]
<?php
header("Content-Type: text/html; charset=utf-8");
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
</head>
참고자료
http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_install&wr_id=58534
http://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_html&wr_id=67008
댓글목록
등록된 댓글이 없습니다.