array_getstring()

Returns array data as string.

Syntax

array_getstring(hnd)

Parameters

hnd Array handle.
Return Value Data as string.

Example

hnd = array_new();
array_setstring(hnd, "PlanetCNC");
result = array_getstring(hnd);
array_delete(hnd);

result:

PlanetCNC

See also

array_new, array_delete, array_setstring