PHP » GoLang |
login |
register |
about
|
GoLang ArrayObject::offsetSet
request it (595)
GoLang replacement for PHP's ArrayObject::offsetSet
[edit | history]
ArrayObject::offsetSet(PHP 5, PHP 7) ArrayObject::offsetSet — Sets the value at the specified index to newval DescriptionSets the value at the specified index to newval. Parameters
Return ValuesNo value is returned. Examples
Example #1 ArrayObject::offsetSet() example
<?phpThe above example will output:
object(ArrayObject)#1 (3) {
["property"]=>
string(11) "prop:public"
[4]=>
string(4) "four"
["group"]=>
array(2) {
[0]=>
string(2) "g1"
[1]=>
string(2) "g2"
}
}
object(ArrayObject)#3 (3) {
[0]=>
string(4) "zero"
[1]=>
string(3) "one"
[2]=>
string(4) "last"
}
|
more
Most requested
more
Last requests
|