downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

ArrayObject::getArrayCopy> <ArrayObject::count
[edit] Last updated: Fri, 25 May 2012

view this page in

ArrayObject::exchangeArray

(PHP 5 >= 5.1.0)

ArrayObject::exchangeArrayRemplace un tableau par un autre

Description

public array ArrayObject::exchangeArray ( mixed $input )

Remplace le tableau courant par un autre tableau ou un objet.

Liste de paramètres

input

Le nouveau tableau ou objet à utiliser.

Valeurs de retour

Retourne l'ancien tableau.

Exemples

Exemple #1 Exemple avec ArrayObject::exchangeArray()

<?php
// Tableaux de fruits
$fruits = array("citrons" => 1"oranges" => 4"bananes" => 5"pommes" => 10);
// Tableau de villes en Europe
$locations = array('Amsterdam''Paris''Londres');

$fruitsArrayObject = new ArrayObject($fruits);

// Échange des fruits par des villes
$old $fruitsArrayObject->exchangeArray($locations);
print_r($old);
print_r($fruitsArrayObject);

?>

L'exemple ci-dessus va afficher :

Array
(
    [citrons] => 1
    [oranges] => 4
    [bananes] => 5
    [pommes] => 10
)
ArrayObject Object
(
    [storage:ArrayObject:private] => Array
        (
            [0] => Amsterdam
            [1] => Paris
            [2] => Londres
        )

)



add a note add a note User Contributed Notes ArrayObject::exchangeArray
Dmitri Snytkine 15-Dec-2009 02:11
It seems that input array is always passed by reference.
For example if you have an existing array
$array with some values
then you have an arrayobject $o
and then you do this:
$o->exchangeArray($array);
$o->offsetSet('somekey', 'some value');

Now if you check your $array array, it will have
a key 'somekey' with value of 'some value'

I totally did not expect that, I am sure it was a mistake to pass array by reference by default.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites