[ php ] ajax 한글 깨짐 방지
작성일 18-09-11 11:55
페이지 정보
작성자 웹지기 조회 7,564회 댓글 0건본문
한글깨짐방지
encodeURIComponent(전송값) - $전송값 = iconv("UTF-8", "CP949", rawurldecode(($_POST['전송값'])));
data: {
"reg_mb_id": encodeURIComponent($(this).val())
},
와 같은 형태로 전송
php 페이지로 받기
$reg_mb_id = iconv("UTF-8", "CP949", rawurldecode(($_POST['reg_mb_id'])));
PHP - javascript 일 경우
$username = rawurlencode(iconv("CP949", "UTF-8", $username));
로 넘겨서 JAVAscRIPT받을 때
[javascript]
username: decodeURIComponent($('#username').val());
php에서 변경할 수 있는 방법은
ajax에서 넘오온값을 mb_convert_encoding() 함수를 이용해 변형
추천0
비추천 0
댓글목록
등록된 댓글이 없습니다.