웹 [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
- 이전글그누보드 자동 등록글 작성시 메인 화면 최신 글 갱신 방법 23.06.15
- 다음글[그누보드] 모바일에서 에디터 사용하는 방법 19.10.04
댓글목록
등록된 댓글이 없습니다.