PHP membuat array dengan ukuran tertentu

$my_array = array_fill(0, $size_of_the_array, $some_data);
Hungry Hyena