Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a json like this:(this is for treeview jquery plugin which load treeview by ajax)

[
{
    "text": "1. Pre Lunch (120 min)",
    "expanded": true,
    "classes": "important",
    "children":
    [
        {
            "text": "1.1 The State of the Powerdome (30 min)"
        },
         {
            "text": "1.2 The Future of jQuery (30 min)"
        },
         {
            "text": "1.2 jQuery UI - A step to richnessy (60 min)"
        }
    ]
},
{
    "text": "2. Lunch  (60 min)"
},
{
    "text": "3. After Lunch  (120+ min)",
    "children":
    [
        {
            "text": "3.1 jQuery Calendar Success Story (20 min)"
        },
         {
            "text": "3.2 jQuery and Ruby Web Frameworks (20 min)"
        },
         {
            "text": "3.3 Hey, I Can Do That! (20 min)"
        },
         {
            "text": "3.4 Taconite and Form (20 min)"
        },
         {
            "text": "3.5 Server-side JavaScript with jQuery and AOLserver (20 min)"
        },
         {
            "text": "3.6 The Onion: How to add features without adding features (20 min)",
            "id": "36",
            "hasChildren": true
        },
         {
            "text": "3.7 Visualizations with JavaScript and Canvas (20 min)"
        },
         {
            "text": "3.8 ActiveDOM (20 min)"
        },
         {
            "text": "3.8 Growing jQuery (20 min)"
        }
    ]
}
]

I want to write a php array which returns a json like this. Please help me.

I tried several ways to do it ,but I cannot do it.

share|improve this question
Is your problem to find the correct array structure in PHP, or how to convert a PHP array to that JSON structure? – deceze Jul 20 '12 at 8:17
same data in php: codepad.org/MHFHwBTs – Yoshi Jul 20 '12 at 8:17

1 Answer

You can use json_encode PHP function

share|improve this answer
hi and thank you . bat i want write a php array which when echo this array with json_encode. this json like json in my question – mohsen Jul 20 '12 at 13:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.