Data Container

A data container is a structure that stores data. It is a generic concept, that covers variables, properties and array elements.

<?php

    $a = 1;
    $object->property = 'b';
    $array = ['a', 3, 4.4];

?>

Related : Container, Variables, Properties, Static Property, Index For Arrays