< 1 2 3 4 > >>   Sort: Date

Convert XML to JSON with PHP
How to convert an XML document to a JSON text string with PHP language? Currently, there is no built-in function or any standard extension that you can use to convert an XML document to a JSON text string. But you can use the following PHP example, xml_to_json_converter.php, to convert an XML docume...
2017-08-17, 2032🔥, 0💬

JSON Format Syntax
What is the JSON format syntax? I heard that it is very simple. JSON format syntax is very simple. It can be summarized below: 1. A JSON text string contains a single JSON Value. 2. A single JSON Value must be one of the following: JSON String - A quoted sequence of Unicode characters represented as...
2023-04-13, 1839🔥, 0💬

Using JSON in JavaScript
Where to find tutorials on Using JSON in JavaScript? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using JSON in JavaScript. What Is JavaScript JSON Object JSON.parse() Function in JavaScript JSON-parse.html - JSON.parse() Example Code JSON-p...
2023-04-13, 1766🔥, 0💬

JSON Schema Validation for JSON String Values
What validation keywords I can use in JSON Schema to specifically validate JSON String values? The current JSON Schema specification supports the following validation keywords to specifically validate JSON Strings values. They are not applied if the JSON instance is not a JSON String. "maxLength" - ...
2017-09-01, 1672🔥, 0💬

Implicit and Explicit ID of JSON Type
What are differences of the implicit ID and the explicit ID of a JSON type in JSON Schema? If a JSON type is defined under a "definitions" property, it could have two identifications: 1. Implicit identification: The implicit identification of a JSON type is an internal bookmark in the form of "#/def...
2017-08-20, 1646🔥, 0💬

Call JSON.parse() with Reviver Function
What is a reviver function that you can provide the JSON.parse() function call? The reviver function is an event handler function that is called repeatedly whenever a JSON element is parsed during the execution of the JSON.parse() function. The reviver function must defined with the following signat...
2023-09-07, 1645🔥, 0💬

Generic JSON Schema Validation Keywords
What are other generic JSON Schema validation keywords? Several other generic JSON Schema validation keywords are listed below. They are always applied to the JSON instance. "enum" - The JSON instance must match one of the elements in the given array. For example, JSON Schema: {"enum": ["YES", "NO"]...
2017-08-25, 1642🔥, 0💬

JSON Validation at jsonlint.com
How to use the JSON Validation Tool at jsonlint.com? If you want to try the JSON Validation Tool at jsonlint.com, you can follow this tutorial: 1. Go to the The JSON Validator page at jsonlint.com. 2. Enter the following JSON text string in the text area: { "firstName": "John", "lastName": "Smith", ...
2023-09-05, 1640🔥, 0💬

Introduction of JSON
Where to find tutorials in understanding what is JSON? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is JSON. What Is JSON? JSON Text String Example JSON Format Syntax Examples of Invalid JSON Values   ⇒ What Is JSON? ⇐ JS...
2023-04-25, 1609🔥, 0💬

JSON Text String Example
Where to get a simple example of JSON text string? 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": "1...
2023-09-07, 1592🔥, 0💬

JSON.parse() Function in JavaScript
Where to get the detailed description of the JSON.parse() Function in JavaScript? Here is the detailed description of the JSON.parse() Function in JavaScript. Description - The JSON.parse() function parses a JSON string, constructing the JavaScript value or object described by the string. An optiona...
2023-04-13, 1587🔥, 0💬

JSON-parse-Error.html - JSON.parse() Errors
How to catch errors when calling the JSON.parse() function in JavaScript? If you want to catch errors when calling the JSON.parse() function in JavaScript, you can follow this tutorial: 1. Use the "try {...} catch {...}" block to catch the error object throw from the JSON.parse() function, as shown ...
2023-09-07, 1574🔥, 0💬

JSON Schema Validation Keywords
How many validation keywords are supported in JSON Schema? The current JSON Schema specification supports 29 validation keywords: "multipleOf" - If the JSON instance is a number, it must be a multiple of the given value. "maximum" - If the JSON instance is a number, it must be less than or equal to ...
2017-09-01, 1570🔥, 0💬

Mapping XML Elements with Mixed Contents to JSON Values
What is the standard to map XML elements with mixed contents to JSON values? There seems to be no industry standard on how to map XML elements with mixed contents to JSON values. But there are some commonly used conventions: 1. Converting text content in an XML complex element to a JSON object prope...
2017-08-17, 1553🔥, 0💬

What Is PHP JSON Extension
What Is the PHP JSON Extension? The PHP JSON Extension is a standard extension included in the PHP distribution since PHP 5.2.0 version to support JavaScript Object Notation (JSON) data-interchange format defined in RFC 7159. The PHP JSON Extension provides 4 main functions: json_decode() — Decodes ...
2023-02-28, 1552🔥, 0💬

JSON to XML Conversion at jsonformatter.org
How to use the JSON to XML Conversion Tool at jsonformatter.org? If you want to try the JSON to XML Conversion Tool at jsonformatter.org, you can follow this tutorial: 1. Go to the JSON to XML Conversion Tool page at jsonformatter.org. 2. Enter the following JSON value in the text area: ["Hello", 3....
2023-09-05, 1551🔥, 0💬

What Is JSON?
What Is JSON? JSON (JavaScript Object Notation) is a standard text string format that uses human-readable text to record data objects consisting of attribute–value pairs and array structures. JSON was specified by Douglas Crockfor in in the early 2000s. It was originally derived from JavaScript, but...
2023-04-25, 1542🔥, 0💬

References to JSON Types Defined Externally
How to reference a JSON type that is defined externally in another JSON Schema? If a JSON type is defined externally in another JSON schema, you can reference it using its absolute address. For example, the following JSON schema has two external references. One refers to a JSON Type defined in a loc...
2017-08-25, 1532🔥, 0💬

JSON Schema Validation for JSON Number Values
What validation keywords I can use in JSON Schema to specifically validate JSON Number values? The current JSON Schema specification supports the following validation keywords to specifically validate JSON Number values. They are not applied if the JSON instance is not a JSON Number. "multipleOf" - ...
2017-09-01, 1513🔥, 0💬

JSON to XML Conversion at codebeautify.com
How to use the JSON to XML Conversion Tool at codebeautify.com? If you want to try the JSON to XML Conversion Tool at codebeautify.com, you can follow this tutorial: 1. Go to the JSON to XML Conversion Tool page at codebeautify.com. 2. Enter the following JSON value in the text area: ["Hello", 3.14,...
2023-08-25, 1500🔥, 0💬

Using JSON in PHP
Where to find tutorials on Using JSON in PHP? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using JSON in PHP. What Is PHP JSON Extension json_decode() Function in PHP json_decode() - JSON to PHP Data Type Mapping json_decode() - JSON Array t...
2023-02-28, 1499🔥, 0💬

JSON Schema Syntax
What is the JSON Schema syntax? I heard that it is very simple. JSON Schema syntax is very simple. Here are some basic JSON Schema syntax rules: 1. A JSON schema must be a valid JSON Object. 2. A JSON schema may contain zero, one or more validation properties (also called keywords). Each validation ...
2018-02-01, 1491🔥, 0💬

json_encode() - PHP Associative Array to JSON Object
How to convert PHP Associative Arrays to JSON Objects using the json_encode() function? Actually in PHP, all arrays are associative arrays. If you create an array with regular array syntax and functions, PHP actually stores it as an associative array with the index number assigned to each elements a...
2023-08-17, 1490🔥, 0💬

XML to JSON Conversion at browserling.com
How to use the XML to JSON Conversion Tool at browserling.com? If you want to try the XML to JSON Conversion Tool at browserling.com, you can follow this tutorial: 1. Go to the JSON and XML Conversion Tool page at browserling.com. 2. Enter the following XML document in the XML text area: &lt;pro...
2023-02-28, 1466🔥, 0💬

< 1 2 3 4 > >>   Sort: Date