Add some test files.
[macgdbp.git] / dev / tests / long_array.php
1 <?php
2
3 $a = [];
4
5 for ($i = 0; $i < 2048; ++$i) {
6 $a[$i] = $i;
7 }
8
9 print_r($a);
10