웹 [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
- 이전글[안드로이드] android studio에서 ignore file 설정 20.01.23
- 다음글[그누보드] 모바일에서 에디터 사용하는 방법 19.10.04
댓글목록
등록된 댓글이 없습니다.