Difference between revisions of "JSON ENCODE()"

From Lianjapedia
Jump to: navigation, search
(Created page with '==Purpose== Function to create a JSON formatted string from a dynamic array (object) ==Syntax== JSON_ENCODE(<object>|<array>) ==See Also== ACLASS(), ADDPROPERTY(), [[A…')
 
Line 23: Line 23:
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 +
[[Category:JSON Functions]]

Revision as of 01:47, 7 December 2012

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"]}