Créer une table de zéros php

<?php
  //Will Fill from 0 to 10 with number 0
$a = array_fill(0, 10, 0);
print_r($a);
?>
Green Team