ArrayAccess::offsetSet

(PHP 5, PHP 7, PHP 8)

ArrayAccess::offsetSetAssign a value to the specified offset

Descrierea

abstract public ArrayAccess::offsetSet ( mixed $offset , mixed $value ) : void

Assigns a value to the specified offset.

Parametri

offset

The offset to assign the value to.

value

The value to set.

Valorile întoarse

Nu este întoarsă nici o valoare.

Note

Notă:

The offset parameter will be set to null if another value is not available, like in the following example.

<?php
$arrayaccess
[] = "first value";
$arrayaccess[] = "second value";
print_r($arrayaccess);
?>

Exemplul de mai sus va afișa:

Array
(
    [0] => first value
    [1] => second value
)

Notă:

This function is not called in assignments by reference and otherwise indirect changes to array dimensions overloaded with ArrayAccess (indirect in the sense they are made not by changing the dimension directly, but by changing a sub-dimension or sub-property or assigning the array dimension by reference to another variable). Instead, ArrayAccess::offsetGet() is called. The operation will only be successful if that method returns by reference.

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top