Difference between revisions of "JSON ENCODE()"

From Lianjapedia
Jump to: navigation, search
m (Reverted edits by Barrymavin (talk) to last revision by Admin)
Line 9: Line 9:
  
 
==Description==
 
==Description==
The JSON_ENCODE() function is used to create a dynamic array (object) from a JSON formatted string.   
+
The JSON_ENCODE() function is used to create a JSON formatted string from the dynamic array, <object> or <array>For strings larger than 64K use the [[PRINT_JSON()]] function.
  
 
==Example==
 
==Example==

Revision as of 20:39, 17 April 2013

Purpose

Function to create a JSON formatted string from a dynamic array (object)

Syntax

JSON_ENCODE(<object>|<array>)

See Also

ACLASS(), ADDPROPERTY(), AMEMBERS(), COMPOBJ(), CREATEOBJECT(), DEFINE CLASS, DISPLAY CLASSES, DODEFAULT(), FOREACH, JSON_DECODE(), JSON_DECODE_FILE(), LIST CLASSES, LOADOBJECT(), NEWOBJECT(), OBJECT(), PRINT_JSON(), PRINT_HTML(), PRINT_R(), PRINT_XML(), REMOVEPROPERTY(), REQUIRE_ONCE(), SAVEOBJECT(), SQL SELECT, WITH, XML_DECODE_FILE()

Description

The JSON_ENCODE() function is used to create a JSON formatted string from the dynamic array, <object> or <array>. For strings larger than 64K use the PRINT_JSON() function.

Example

myobj = json_decode('{"Name":"Barry", "Company":"Lianja", "Items":["One", "two"]}')
? json_encode(myobj)
{"name":"Barry","company":"Lianja","items":["One","two"]}