Skip to content

Instantly share code, notes, and snippets.

@lukebaker
Created February 10, 2010 19:50
Show Gist options
  • Save lukebaker/300771 to your computer and use it in GitHub Desktop.
Save lukebaker/300771 to your computer and use it in GitHub Desktop.
// option 1 - "versions" key points to an array
{"versions":
[
{"version":{"id":...}},
{"version":{"id":...}}
]
}
// option 2 - "version" key points to an array
{"versions":
{
"version":
[{"id":...},
{"id":...}]
}
}
# option 1
array (
'versions' =>
array (
0 =>
array (
'version' =>
array (
'id' => '3',
),
),
1 =>
array (
'version' =>
array (
'id' => '4',
),
),
),
)
# option 2
array (
'versions' =>
array (
'version' =>
array (
0 =>
array (
'id' => '3',
),
1 =>
array (
'id' => '4',
),
),
),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment