ArrayObject::offsetSet

(PHP 5, PHP 7, PHP 8)

ArrayObject::offsetSetEstablece el valor en el índice especificado

Descripción

public ArrayObject::offsetSet(mixed $index, mixed $newval): void

Establecer el valor en el índice especificado por newval.

Parámetros

index

El índice a ser establecido.

newval

El nuevo valor para el index.

Valores devueltos

No devuelve ningún valor.

Ejemplos

Ejemplo #1 Ejemplo de ArrayObject::offsetSet()

<?php
class Ejemplo {
public
$property = 'prop:public';
}
$arrayobj = new ArrayObject(new Ejemplo());
$arrayobj->offsetSet(4, 'cuatro');
$arrayobj->offsetSet('grupo', array('g1', 'g2'));
var_dump($arrayobj);

$arrayobj = new ArrayObject(array('cero','uno'));
$arrayobj->offsetSet(null, 'último');
var_dump($arrayobj);
?>

El resultado del ejemplo sería:

object(ArrayObject)#1 (3) {
  ["property"]=>
  string(11) "prop:public"
  [4]=>
  string(6) "cuatro"
  ["grupo"]=>
  array(2) {
    [0]=>
    string(2) "g1"
    [1]=>
    string(2) "g2"
  }
}
object(ArrayObject)#3 (3) {
  [0]=>
  string(4) "cero"
  [1]=>
  string(3) "uno"
  [2]=>
  string(6) "último"
}

Ver también

add a note

User Contributed Notes 2 notes

up
3
jerikojerk
14 years ago
On my php 5.3.5 installation, i discovered that value can be set by reference and not by copy ... depending the context..so this is différent from what a regular array() <?phpfunction set(&$x, &$a ){    $x[] = $a;}$x = new ArrayObject();$y = array();$z = new ArrayObject();$a =  array( 'foo' );set($y,$a);set($x,$a);$z[]=$a;$a = array( 'bar');set($x,$a);set($y,$a);$z[]=$a;print_r($x);print_r($y);print_r($z);?>// output ArrayObject Object(    [storage:ArrayObject:private] => Array        (            [0] => Array                (                    [0] => bar                )            [1] => Array                (                    [0] => bar                )        ))Array(    [0] => Array        (            [0] => foo        )    [1] => Array        (            [0] => bar        ))ArrayObject Object(    [storage:ArrayObject:private] => Array        (            [0] => Array                (                    [0] => bar                )            [1] => Array                (                    [0] => bar                )        ))
up
2
n dot lenepveu at gmail dot com
16 years ago
If $index is null, $newval is naturally pushed onto the end of the array as ArrayObject::append
To Top