http://www.compileonline.com/execute_php_online.php
Sol tarafa aşağıdaki kodu yazıp üstteki Execute Script yazısına tıklayıp sağ taraftan sayıları kopyalayabilirsiniz.
<?php
$i = 2050000001;
while ($i <= 2050099999) {
echo $i++;
echo "<br />";/* the printed value would be
$i before the increment
(post-increment) */
}
?>