다음 쇼핑하우 인코딩을 euc-kr 로 변경
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
<?php
|
||||
include_once('./_common.php');
|
||||
|
||||
ob_start();
|
||||
header("Content-Type: text/html; charset=utf-8");
|
||||
|
||||
/*
|
||||
@ -139,4 +140,10 @@ for ($i=0; $row=sql_fetch_array($result); $i++)
|
||||
|
||||
HEREDOC;
|
||||
}
|
||||
?>
|
||||
|
||||
$content = ob_get_contents();
|
||||
ob_end_clean();
|
||||
|
||||
$content = iconv('utf-8', 'euc-kr', $content);
|
||||
echo $content;
|
||||
?>
|
||||
Reference in New Issue
Block a user