DynamicArray::resize

(Available since version 1.0)

DynamicArray::resizeResizes the internal array

Description

protected void DynamicArray::resize ( int $size [, int $count ] )

Resizes the internal array to size. If count is set then it becomes the new value of DynamicArray::count() and any extra elements on the internal array are set to NULL.

Parameters

size

The new size of the internal array.

count

The new DynamicArray::count() value or size of the external array.

Return Values

No value is returned.

To Top