6 lines
78 B
PHP
6 lines
78 B
PHP
<?php
|
|
$tableau = [];
|
|
for (int i=0; i<10; i++){
|
|
$tableau = [i];
|
|
}
|
|
?>
|