<?php
$ArrTest[1000]=999;
echo$ArrTest[1000]."dd"."<br>";
echocount($ArrTest)."fff";
?>
结果:
999dd
1fff
说明实际上系统只分配了$ArrTest[1000]所需的空间。