<?php

$filled = array();
$fillingUp = array(1, 2, 3);

for ($i = 0; $i <= 5; $i++) {
	$filled[$i] = $fillingUp;
}

var_dump($filled);