(PHP 5, PHP 7)
ArrayObject::offsetSet — Sets the value at the specified index to newval
public ArrayObject::offsetSet ( mixed $index , mixed $newval ) : void
Sets the value at the specified index to newval.
index
The index being set.
newval
The new value for the index
.
No value is returned.
Example #1 ArrayObject::offsetSet() example
<?php class Example { public $property = 'prop:public'; } $arrayobj = new ArrayObject(new Example()); $arrayobj->offsetSet(4, 'four'); $arrayobj->offsetSet('group', array('g1', 'g2')); var_dump($arrayobj); $arrayobj = new ArrayObject(array('zero','one')); $arrayobj->offsetSet(null, 'last'); var_dump($arrayobj); ?>
The above example will output:
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/arrayobject.offsetset.php