Tools, FAQ, Tutorials:
JSON Text String Example
Where to get a simple example of JSON text string?
✍: FYIcenter.com
You can go to JSON at Wikipedia
to get the following JSON text string example:
{
"firstName": "John",
"lastName": "Smith",
"isAlive": true,
"age": 25,
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021-3100"
},
"phoneNumbers": [
{
"type": "home",
"number": "212 555-1234"
},
{
"type": "office",
"number": "646 555-4567"
},
{
"type": "mobile",
"number": "123 456-7890"
}
],
"children": [],
"spouse": null
}
2023-09-07, ∼2564🔥, 0💬
Popular Posts:
Why I am getting "LNK1104: cannot open file 'MSCOREE.lib'" error when building a C++/CLI program? Vi...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
Can Two Forms Be Nested? Can two forms be nested? The answer is no and yes: No. You can not nest two...
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...
How To Remove Slashes on Submitted Input Values in PHP? By default, when input values are submitted ...