JSON string key missing double quotation mark workaround

Source: Internet
Author: User

The JSON string is a string in the form of Key:value . Normal key is enclosed in double quotes .

However, if the key of the JSON string is missing a double-quoted, then Json_decode will fail.

<?php/** compatible key does not have a double-quoted JSON string parsing * @param  string  $str JSON String * @param  boolean $mod true:array,false:o bject* @return array/object*/function ext_json_decode ($str, $mode =false) {    if (preg_match ('/\w:/', $str)) {        $ str = preg_replace ('/(\w+):/is ', ' "$": ', $str);    }    Return Json_decode ($str, $mode);} $str = ' {' name ': ' Fdipzone '} '; Var_dump (Ext_json_decode ($str, true)); Array (1) {["Name"]=> string (8) "Fdipzone"} $str 1 = ' {name: "Fdipzone"} '; Var_dump (Ext_json_decode ($str 1, true)); Array (1) {["Name"]=> string (8) "Fdipzone"}?>




JSON string key missing double quotation mark workaround

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.