Where The Streets Have No Name

json_encode에서 한글이 깨지는 경우 본문

Developement/PHP

json_encode에서 한글이 깨지는 경우

highheat 2015. 1. 20. 17:41
$menu = array();
$menu[] = array('type' => 'appetizer', 'dish' => 'Chicken Soup');
$menu[] = array('type' => 'main course', 'dish' => urlencode('무궁화'));
$json_result = json_encode($menu);
header('Content-Type: application/json');
echo urldecode($json_result);
$ad_arr[0]['title'] = urlencode("치킨팝");
$ad_arr[0]['explain'] = urlencode("[치킨팝]어플 다운로드시 200원 적립!!");
$ad_arr[0]['method'] = urlencode("다운로드");
$ad_arr[0]['mileage'] = 200;
$ad_arr[0]['ch_mil'] = "Y";
$ad_arr[0]['event_txt'] = ""; 
$en_ad_arr = json_encode($ad_arr);
// 한글이 url encoding 상태로 출력
print_r($en_ad_arr);
echo "<br/>";
// 한글이 정상적으로 출력
echo urldecode($en_ad_arr);