簡體   English   中英

json沒有使用php轉換為數組

[英]json is not converting into an array using php

你好,我有json格式的以下字符串。

<?php echo $textjson='dataSource: [{
        id: 1, text: "My Documents", expanded: true, spriteCssClass: "rootfolder", items: [
            {
                id: 2, text: "Kendo UI Project", expanded: true, spriteCssClass: "folder", items: [
                    { id: 3, text: "about.html", spriteCssClass: "html" },
                    { id: 4, text: "index.html", spriteCssClass: "html" },
                    { id: 5, text: "logo.png", spriteCssClass: "image" }
                ]
            },
            {
                id: 6, text: "New Web Site", expanded: true, spriteCssClass: "folder", items: [
                    { id: 7, text: "mockup.jpg", spriteCssClass: "image" },
                    { id: 8, text: "Research.pdf", spriteCssClass: "pdf" },
                ]
            },
            {
                id: 9, text: "Reports", expanded: true, spriteCssClass: "folder", items: [
                    { id: 10, text: "February.pdf", spriteCssClass: "pdf" },
                    { id: 11, text: "March.pdf", spriteCssClass: "pdf" },
                    { id: 12, text: "April.pdf", spriteCssClass: "pdf" }
                ]
            }
        ]
    }]
}); ' ?>

我已經嘗試了很多事情來轉換成數組,但沒有得到任何結果。 為了轉換我的json字符串,我使用了以下代碼。

<?php // echo 'hello' .$textjson; 
        //echo unserialize($textjson,true); 
        echo 'hellokjkvbh';
        echo $textjson;
        $json9=json_decode($textjson); 
        //print_r($textjson);
        print_r($json9); ?>

但沒有任何效果。 請幫忙解決這個謝謝

它不起作用,因為那不是有效的JSON。 嘗試使用JS Linter。 有很多可用的,甚至是基於Web的,例如http : //jsonformatter.curiousconcept.com,http : //www.jslint.com/

嘗試這個:

<?php

$textjson = '{
"dataSource": [{
        "id": 1, "text": "My Documents", "expanded": "true", "spriteCssClass": "rootfolder", "items": [
            {
                "id": 2, "text": "Kendo UI Project", "expanded": true,"spriteCssClass": "folder", "items": [
                    { "id": 3, "text": "about.html", "spriteCssClass": "html" },
                    { "id": 4, "text": "index.html", "spriteCssClass": "html" },
                    { "id": 5, "text": "logo.png", "spriteCssClass": "image" }
                ]
            },
            {
                "id": 6, "text": "New Web Site", "expanded": true, "spriteCssClass": "folder", "items": [
                    { "id": 7, "text": "mockup.jpg", "spriteCssClass": "image" },
                    { "id": 8, "text": "Research.pdf", "spriteCssClass": "pdf" }
                ]
            },
            {
                "id": 9, "text": "Reports", "expanded": true, "spriteCssClass": "folder", "items": [
                    { "id": 10, "text": "February.pdf", "spriteCssClass": "pdf" },
                    { "id": 11, "text": "March.pdf", "spriteCssClass": "pdf" },
                    { "id": 12, "text": "April.pdf", "spriteCssClass": "pdf" }
                ]
            }
        ]
    }]
}';

$json9 = json_decode($textjson);
print_r($json9);
?>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM