简体   繁体   中英

Can't decode JSON from file in PHP

I'm having troubles with json_decode in PHP:

I have this on file:

{1: ['oi','oi'], 2: ['foo','bar']}

And this is my php code:

<?php 
    $string = file_get_contents("quizen.json"); // the file
    $json = json_decode($string);
    echo $json[1][0]
?>

But the echo returns anything, I used var_dump, and I get NULL! What's the problem?

The issue is that your file is not valid JSON since it uses single quotes for strings and has integers as object keys:

{1: ['oi','oi'], 2: ['foo','bar']}

Also, since the JSON is an object, you should decode it to an associative array using json_decode($string, true) .

According to the JSON spec :

A value can be a string in double quotes, or a number, or true or false or null, or an object or an array.

Also, the object keys need to be strings.

If you change the single quotes to double quotes and edit your PHP's decode_json call to decode to an associative array, it should work. For example:

JSON:

{"1": ["oi","oi"], "2": ["foo","bar"]}

PHP:

<?php 
    $string = file_get_contents("quizen.json"); // the file
    $json = json_decode($string, true); // set to true for associative array
    echo $json["1"][0];
?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM