PHPSerializer.serializeArray

Appends a named array to the output buffer. The length of the array is written as uint, so arrays longer than uint.max can't be used. This is done because php doesn't support ulongs (only longs)

class PHPSerializer
void
serializeArray
(
T
)
(
ref ubyte[] output
,
char[] name
,
T[] array
)

Parameters

T

base type of array

output ubyte[]

string to serialize struct data to

array T[]

array to append

name char[]

name of array item

Meta