PHP json_decode() 返回 NULL 和有效的 JSON?更新(对我的 2010 问题有效的响应)

2022-08-30 06:47:44

我将此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"
    }
}

当我尝试用 解码它时,它返回 NULL。为什么?该文件是可读的(我尝试回显,它工作正常)。json_decode()file_get_contents()

我已经针对 http://jsonlint.com/ 测试了JSON,它是完全有效的。

这是怎么回事?

更新(对我的 2010 问题有效的响应)

在Google上寻找答案,我回到了SO:json_decode在Web服务调用后返回NULL。我的JSON文件具有UTF BOM序列(一些不应该存在的二进制字符),因此,破坏了JSON结构。转到十六进制编辑器,擦除了字节。一切恢复正常。为什么会发生这种情况?因为我使用Microsoft Windows的Notepad编辑了该文件。可怕的想法!


答案 1

这对我有用

json_decode( preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $json_string), true );

答案 2

它可能是特殊字符的编码。您可以要求json_last_error()以获取确定的信息。

更新:问题已解决,请查看问题中的“解决方案”段落。


推荐