この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()
、問題なく動作しました)。
JSONをhttp://jsonlint.com/に対してテストしましたが、完全に有効です。
ここで何が問題になっていますか?
解決
Googleで回答を探していたところ、SOに戻りました。Webサービス呼び出しの後にjson_decodeがNULLを返します。私のJSONファイルにはUTF BOMシーケンス(そこにあるべきではないバイナリ文字)が含まれていたため、JSON構造が壊れていました。Hex Editorに行って、バイトを消去しました。すべてが正常に戻っています。なぜこれが起こったのですか?Microsoft Windowsのメモ帳を使用してファイルを編集したからです。ひどい考え!
json_last_error()
。