PHP создать массив указанного размера

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