This commit is contained in:
2026-03-23 14:01:45 +01:00
parent ca8ce10644
commit 0bccb2e3a3
21 changed files with 594 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
$clients = [
"Luc",
7 => "Paul",
2 =>"Martin",
"Arnaud"
];
$produits = [
20 => "Chemise",
3 => "Pantalon",
10 => "Jupe",
"Veste",
"Blouson"
];
$array = ["a","b","c"];
$array[] = "d";
$array[10] = "j";
unset($array[2]);
echo "<pre>";
print_r($clients);
print_r($produits);
print_r($array);
echo "</pre>";
?>