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
Last updated: Fri, 14 Aug 2009

view this page in

ArrayObject::exchangeArray

(PHP 5 >= 5.1.0)

ArrayObject::exchangeArrayRemplace un tableau par un autre

Description

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
There are no user contributed notes for this page.

ArrayObject::getArrayCopy> <ArrayObject::count
Last updated: Fri, 14 Aug 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites