Goto: 4C Home | 4C Docs | 4C External Libraries Home | FCJSon Home | FCJSon Function List CreateArray()

CreateArray()

Purpose:
FCJSon::CreateArray() creates a new FCJSon array object that will hold other json objects, simple and complex.
Usage:
<jsonident> = FCJSon::CreateArray();
Arguments:

None
Returns:
integer <jsonident>
>= 0 - A json ident that can be used in other FCJSon functions that need an array jsonident.
Where Used:
FCJSon::CreateArray() can be called from anywhere.
Example:
Example
Description:
FCJSon::CreateArray() creates a new FCJSon array that will hold other json objects, simple and complex. It returns an ident that is used in many different FCJSon functions. Initially this array will be empty and it will not be embedded in any other objects.

You can add this array to a different json array using FCJSon::ArrayAddArray(), FCJSon::ArrayAddObject(), FCJSon::ArrayPutArray(), or FCJSon::ArrayPutObject().
Bugs/Features/Comments:
See Also:
FCJSon Function List


Back to Top