Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 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
```