웹 [PHP] json_decode 가 null 이고 Control character error, possibly incorrec…
본문
php 에서 json_decode 가 null 이 나왔을때 json_last_error_msg() 를 찍어보았다.
echo json_last_error_msg(); //Control character error, possibly incorrectly encoded
Control character error, possibly incorrectly encoded 이라는 메세지가 나왔다.
그럴 때에는 아래와 같이 처리하자.
$json = preg_replace('/[[:cntrl:]]/', '', $json);
$json = json_decode($json, true);
추천0 비추천 0
댓글목록 0
등록된 댓글이 없습니다.