存储嵌套JSON对象时出现问题

时间:2012-07-26 17:03:43

标签: php json

有没有人可以帮助我如何在不添加引号的情况下将一个JSON对象作为字段传递给另一个?基本上我有一个功能,需要能够附加一个标题'在某些情况下预先解析为JSON的一组数据,或者仅解析其他数据。

问题是一切正常,直到我尝试传递一个JSON对象存储为"有效载荷"对于标题,由于附加了额外的引用集,JSON变为无效。

我想要使用的对象是:

{
    "header": {
        "table": "user",
        "action": "insert",
        "opType": "string",
        "message": "Insert sucessful for user: 6",
        "start of records": false,
        "end of records": true
    },
    "data": "[
        {
            "id": "6",
            "Surname": "Peter",
            "Forename": "Kane",
            "Email": "pkane@a.co.uk",
            "Personal_Email": "p.kane@gmail.com",
            "Home_Phone_No": "01216045429",
            "Work_Phone_No": "087852489",
            "Mobile_Phone_No": "77245455598",
            "Address_Line_1": "1aplace",
            "Address_Line_2": "thistown",
            "Address_Line_3": "Someplace",
            "Address_Line_4": "whereever",
            "Post_Code": "W549AJ",
            "Mode_ID": "44",
            "Route_ID": "g12",
            "image": ""
        }
    ]"
}

问题是"数据"之后的引号钥匙和最后一个curley括号之前没有这些一切都验证好。 正如我所说我使用PHP我已经尝试了正则表达式子串等,但似​​乎没有任何效果。

我的PHP如下:

 public function dataToJSON($operationType, $table, $action, $data, $message, $header = true, $firstRecord = null) {

    if ((!($operationType) === 'recordSet') and (!($operationType === 'error')) and (!($operationType === 'string') )) {
        throw new Exception("Operation type:" . ' ' . $operationType . ' ' . 'passed to the dataToJSON function not recogonised');
    }

    if (!(is_null($firstRecord))) {

        $isFirstRecord = $firstRecord;
        $isLastRecord = !$firstRecord;
    } else {
        $isFirstRecord = false;
        $isLastRecord = false;
    }

    if ($header) {
        $jsonData = array('header' => array(
                'table' => "$table",
                'action' => "$action",
                'opType' => "$operationType",
                'message' => "$message",
                'start of records' => $isFirstRecord,
                'end of records' => $isLastRecord),
        );
    } else {
        $jsonData = array();
    }

     $recordSet = array();

    if ($operationType === 'recordSet') {
        while ($row = mysql_fetch_assoc($data)) {
            array_push($recordSet, $row);
        }
        if ($header) {
            $jsonData ['data'] = $recordSet;
            return json_encode($jsonData);
        } else {
            return json_encode($recordSet);
        }

    } else if (($operationType === 'error') || ($operationType === 'string')) {
        if ($header) {
            $jsonData ['data'] = $data;
            return stripslashes(json_encode($jsonData));
        } else {
            return $data;
        }
    }
}

2 个答案:

答案 0 :(得分:1)

为了使用/解析json,它需要有效 json ...而那些**"**字符使它无效。

粘贴并在此处理以查看我的意思:http://jsonformat.com/

答案 1 :(得分:0)

JSON对象只不过是一个字符串。要实现您要实现的目标,您可能需要对JSON字符串进行解码然后重新编码:

$jsonData['data'] = json_decode($data, TRUE);