Files
php_8/math/randline.php
2022-05-07 21:53:16 +03:00

8 lines
162 B
PHP

<?php
$lines = fopen('largetextfile.txt', 'r');
for ($i = 0; $current = fgets($lines, 10_000); $i++) {
if (rand(0, $i) == 0) $line = $current;
}
echo $line;