ArrayOfArrays
        
        extends AbstractArray
    
    
            
            in package
            
        
    
    
    
        
            Provide a way to create an array of array typed elements with php.
Tags
Table of Contents
- NO_FLAGS = 0
- __construct() : mixed
- Class Contructor.
- append() : void
- Append a value at the end of the array.
Constants
NO_FLAGS
    public
        int
    NO_FLAGS
    = 0
    
        NO_FLAGS Used as default value for the parameter $flags.
Methods
__construct()
Class Contructor.
    public
                    __construct([array<int|string, array<string|int, mixed>> $input = [] ][, int $flags = AbstractArray::NO_FLAGS ][, class-string $iterator_class = ArrayIterator::class ]) : mixed
    
        Parameters
- $input : array<int|string, array<string|int, mixed>> = []
- 
                    Array of values, every value must be an array.
- $flags : int = AbstractArray::NO_FLAGS
- 
                    Flags to control the behaviour of the ArrayObjectobject, seeArrayObjecton php site.
- $iterator_class : class-string = ArrayIterator::class
- 
                    Specify the class that will be used for iteration of the ArrayObjectobject, the class must implementArrayIterator.
Tags
Return values
mixed —append()
Append a value at the end of the array.
    public
                    append(mixed $value) : void
    
        Parameters
- $value : mixed