JSON Functions
Encodes / Decodes JSON Strings. Parses JSON Strings.
- JSON_DECODE
Decodes a JSON string
JSON_DECODE("[1,2,3]")Try this examplejson (string)The json string being decoded. This function only works with UTF-8 encoded strings. - JSON_ENCODE
Returns the JSON representation of a value
JSON_ENCODE([1,2,3])Try this examplevalue (array)The value being encoded. Can be any type except a resource. All string data must be UTF-8 encoded. - JSONPARSE
Parses a string and returns as array or object.
JSONPARSE("[1,2,3]")Try this examplejson_string (string)A string written in JSON format - JSONSTRINGIFY
Converts array or object into string.
JSONSTRINGIFY([1,2,3])Try this examplearray (array)Array or object