ArrayObject::offsetSet

(PHP 5)

ArrayObject::offsetSet — Sets the value at the specified $index to $newval

Описание

void ArrayObject::offsetSet ( mixed $index , mixed $newval )
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Sets the value at the specified index to newval.

Список параметров

index

The index being set.

newval

The new value for the index .

Возвращаемые значения

Эта функция не возвращает значения после выполнения.

Коментарии

If $index is null, $newval is naturally pushed onto the end of the array as ArrayObject::append
2008-09-30 03:20:00
http://php5.kiev.ua/manual/ru/arrayobject.offsetset.html
Автор:
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() 

<?php

function 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
                )

        )

)
2011-08-22 18:58:01
http://php5.kiev.ua/manual/ru/arrayobject.offsetset.html

    Поддержать сайт на родительском проекте КГБ