Skip to content

Instantly share code, notes, and snippets.

@ryanguill
Created August 19, 2016 16:38
Show Gist options
  • Save ryanguill/1f7b2053b5dccc1bc9ba87d7eae1c4c8 to your computer and use it in GitHub Desktop.
Save ryanguill/1f7b2053b5dccc1bc9ba87d7eae1c4c8 to your computer and use it in GitHub Desktop.
{
"firstName": "John",
"lastName": "Smith",
"age": 25,
"address":
{
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021"
},
"phoneNumber":
[
{
"type": "home",
"number": "212 555-1234"
},
{
"type": "fax",
"number": "646 555-4567"
}
],
"isMarried": true,
"isUnder18": false,
"favoriteNumbers": [1,42,3.14159],
"nullTest": null
}
a:9:{s:9:"firstName";s:4:"John";s:8:"lastName";s:5:"Smith";s:3:"age";i:25;s:7:"address";a:4:{s:13:"streetAddress";s:13:"21 2nd Street";s:4:"city";s:8:"New York";s:5:"state";s:2:"NY";s:10:"postalCode";s:5:"10021";}s:11:"phoneNumber";a:2:{i:0;a:2:{s:4:"type";s:4:"home";s:6:"number";s:12:"212 555-1234";}i:1;a:2:{s:4:"type";s:3:"fax";s:6:"number";s:12:"646 555-4567";}}s:9:"isMarried";b:1;s:9:"isUnder18";b:0;s:15:"favoriteNumbers";a:3:{i:0;i:1;i:1;i:42;i:2;d:3.1415899999999999;}s:8:"nullTest";N;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment