ArrayObject::offsetGet
Returns the value at the specified index
&reftitle.description;
mixedArrayObject::offsetGet
mixedindex
&reftitle.parameters;
index
The index with the value.
&reftitle.returnvalues;
The value at the specified index or &false;.
&reftitle.examples;
ArrayObject::offsetget example
'e.g.'));
var_dump($arrayobj->offsetget(1));
var_dump($arrayobj->offsetget('example'));
var_dump($arrayobj->offsetexists('notfound'));
?>
]]>
&example.outputs;