Det afhænger helt af hvordan din data er struktureret. Men du kan altid få en nøjagtig overgang fra JSON til f.eks PHP-arrays:
Eneste betingelse er at JSON altid har et øverste niveau, enten som array eller som objekt:
- {
- "id":"1",
- "result":{
- "title":"This is the title",
- "publish":"John Doe"
- },
- "photos": {
- "page": 1,
- "pages": 1,
- "perpage": 10,
- "total": 100,
- "photo": [
- {
- "id": "14746184623",
- "owner": "126454557@N03",
- "secret": "0339d4350c",
- "server": "2919",
- "farm": 3,
- "title": "test",
- "ispublic": 1,
- "isfriend": 0,
- "isfamily": 0
- }
- ]
- },
- "stat": "ok"
- }
- array(
- "id"=>"1",
- "result" => array(
- "title"=>"This is the title",
- "publish"=>"John Doe"
- ),
- "photos"=> array(
- "page"=> 1,
- "pages"=> 1,
- "perpage"=> 10,
- "total"=> 100,
- "photo"=> array(
- array(
- "id"=> "14746184623",
- "owner"=> "126454557@N03",
- "secret"=> "0339d4350c",
- "server"=> "2919",
- "farm"=> 3,
- "title"=> "test",
- "ispublic"=> 1,
- "isfriend"=> 0,
- "isfamily"=> 0
- )
- )
- ),
- "stat"=> "ok"
- );