tableau.md 712 octets
Newer Older
salim's avatar
MAJ
salim a validé

# 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
<?php
    // Indexed Array
    $colors = ['red', 'green', 'blue'];
    $colors[] = 'yellow'; // Adding a new element
    echo $colors[3]; // Outputs "yellow"
?>
```


---
# Les Tableaux en PHP
## Destructuration des tableaux
```php
list($first, $second) = ['red', 'green'];
echo $first;  // red
echo $second; // green
```