Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- PHP
- 자바스크립트
- chart.js
- UML
- WebView
- 자동 생성
- Mail Server
- php 취약점
- html5
- android 효과음
- mysql
- 안드로이드 gcm
- 안드로이드
- 안드로이드 푸시
- 폼메일
- FCM
- xe
- C# IO
- php 시큐어코딩
- Android
- 안드로이드 푸쉬
- curl
- javascript
- 우분투
- soundpool
- not working
- roundcube
- dovecot
- 설치
- C#
Archives
- Today
- Total
그러냐
php json decode 시 에러 또는 Null뜰때 본문
반응형
api로 json 값을 가져와서 계속 decode 하는데 Null값이 뜨고,
안된다고 해서......
찾아보니...
결국
null 또는 스페이스같은게 들어가서 안되는거였다.
$json_string = file_get_contents($api_url);
$data = json_decode( preg_replace('/[\x00-\x1F\x7F]/u', '', $json_string), true );
위처럼 preg_replace 써서, 한번 정리해주니까. 먹힌다...
참고, url
https://stackoverflow.com/questions/2410342/php-json-decode-returns-null-with-valid-json
처음에 아래처럼썼었는데,
$data = json_decode( preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $json_string), true );
댓글에 누가 머라고 해서, 찾아보니, UTF-8은
$string = preg_replace('/[\x00-\x1F\x7F]/u', '', $string);
이렇게 해야한다..
https://stackoverflow.com/questions/1176904/php-how-to-remove-all-non-printable-characters-in-a-string
출처: https://tyson.tistory.com/169 [TysonWorld]
반응형
'php' 카테고리의 다른 글
php linux cron 실행 안됨 (0) | 2021.11.29 |
---|---|
php html to pdf 변환 (한글?) (0) | 2021.10.07 |
Window환경에서 Laravel 개발환경 구축 (0) | 2021.04.28 |
PHPExcel Exception not found 이미지 첨부시 오류 (0) | 2021.02.03 |
php continue Warning 뜨는 경우 (0) | 2020.11.05 |