数组和集合 / 数组

<?php

$count = 15;
$arInt = array_fill(0, $count, 0);
$arInt[0] = 1;

print_r($arInt);