<?php
for($i = 0;$i<4;$i++){
    $arrData[$i][1] = str_repeat($i+1,4);
}
print_r($arrData);
?>