# Les Tableaux en PHP ## Déclaration d'un tableau ```php $colors = ['red', 'green', 'blue']; $person = ['name' => 'Alice', 'age' => 30]; ``` --- # Les Tableaux en PHP ## Itération sur un tableau ```php foreach ($colors as $color) { echo $color . ' '; } foreach ($person as $key => $value) { echo $key . ': ' . $value . ' '; } ``` --- # Les Tableaux en PHP ## Ajout d'un item ```php ``` --- # Les Tableaux en PHP ## Destructuration des tableaux ```php list($first, $second) = ['red', 'green']; echo $first; // red echo $second; // green ```