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, ∼2377🔥, 0💬
Popular Posts:
How To Copy Array Values to a List of Variables in PHP? If you want copy all values of an array to a...
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials ...
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...
How To Create an Array with a Sequence of Integers or Characters in PHP? The quickest way to create ...
How to convert a JSON text string to an XML document with PHP language? Currently, there is no built...