数组和集合 / 数组

<?php

$value = 5;
$count = 3;
$arInt = array_fill(0, $count, $value);
print_r($arInt);