이 JSON 개체는 일반 텍스트 파일에 저장되어 있습니다.
{
"MySQL": {
"Server": "(server)",
"Username": "(user)",
"Password": "(pwd)",
"DatabaseName": "(dbname)"
},
"Ftp": {
"Server": "(server)",
"Username": "(user)",
"Password": "(pwd)",
"RootFolder": "(rf)"
},
"BasePath": "../../bin/",
"NotesAppPath": "notas",
"SearchAppPath": "buscar",
"BaseUrl": "http:\/\/montemaiztusitio.com.ar",
"InitialExtensions": [
"nem.mysqlhandler",
"nem.string",
"nem.colour",
"nem.filesystem",
"nem.rss",
"nem.date",
"nem.template",
"nem.media",
"nem.measuring",
"nem.weather",
"nem.currency"
],
"MediaPath": "media",
"MediaGalleriesTable": "journal_media_galleries",
"MediaTable": "journal_media",
"Journal": {
"AllowedAdFileFormats": [
"flv:1",
"jpg:2",
"gif:3",
"png:4",
"swf:5"
],
"AdColumnId": "3",
"RSSLinkFormat": "%DOMAIN%\/notas\/%YEAR%-%MONTH%-%DAY%\/%TITLE%/",
"FrontendLayout": "Flat",
"AdPath": "ad",
"SiteTitle": "Monte Maíz: Tu Sitio",
"GlobalSiteDescription": "Periódico local de Monte Maíz.",
"MoreInfoAt": "Más información aquí, en el Periódico local de Monte Maíz.",
"TemplatePath": "templates",
"WeatherSource": "accuweather:SAM|AR|AR005|MONTE MAIZ",
"WeatherMeasureType": "1",
"CurrencySource": "cotizacion-monedas:Dolar|Euro|Real",
"TimesSingular": "vez",
"TimesPlural": "veces"
}
}
로 디코딩하려고하면 json_decode()
NULL이 반환됩니다. 왜? 파일을 읽을 수 있습니다 (반향을 시도했지만 정상적으로 file_get_contents()
작동했습니다).
http://jsonlint.com/ 에 대해 JSON을 테스트 했으며 완벽하게 유효합니다.
여기서 뭐가 잘못 됐나요?
해결책
Google에서 답변을 찾고 SO : json_decode returns NULL after webservice call . 내 JSON 파일에는 UTF BOM 시퀀스 (있을 수없는 일부 이진 문자)가 있으므로 JSON 구조가 손상되었습니다. 16 진수 편집기로 이동하여 바이트를 지 웠습니다. 모든 것이 정상으로 돌아 왔습니다. 왜 이런 일이 발생 했습니까? Microsoft Windows의 메모장을 사용하여 파일을 편집했기 때문입니다. 끔찍한 생각!
json_last_error()
.