%JSON_ArrayAppendArray function


Function

Appends a new array at the end of the JSON array.

Declaration
%JSON_ArrayAppendArray(
    INT in handle, 
    INT in array
 )
Parameters
handleHandle to the JSON array into which the new item will be inserted.
arrayHandle to JSON array.
Return value
None.


Description

The function inserts a new array at the end of the JSON array.

An exception is thrown if it is an invalid JSON array handle or an invalid JSON array handle.

Example
 INT _arr
 _arr := %JSON_CreateArray()

 INT _tmp
 _tmp := %JSON_CreateArray()
 
 %JSON_ArrayAppendArray(_arr, _tmp)

 %JSON_FreeArrayHandle(_arr)
 %JSON_FreeArrayHandle(_tmp)
Napíšte komentár