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, ∼2234🔥, 0💬
Popular Posts:
Where to get the detailed description of the json_encode() Function in PHP? Here is the detailed des...
How to convert a JSON text string to an XML document with PHP language? Currently, there is no built...
Where to find tutorials on OpenID? Here is a large collection of tutorials to answer many frequently...
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...
What is Azure API Management Developer Portal? Azure API Management Developer Portal is an Azure Web...