Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

json - php json_decode fails without quotes on key

I have json data represented like this

{key:"value"}

(no quotes arround key...)

I want to translate it to an associative array.

PHP's json_decode returns null

How can I add the quotes around the key?? thanks...

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can either fix the JSON at the source so that it returns a valid JSON structure, or you can manually add quotes around the keys.

This answer to a similar question has an example of how to do that:

function my_json_decode($s) {
    $s = str_replace(
        array('"',  "'"),
        array('"', '"'),
        $s
    );
    $s = preg_replace('/(w+):/i', '"1":', $s);
    return json_decode(sprintf('{%s}', $s));
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...