ataliemre
<?php print("EmreATALI"?>
Kullanıcı
-
Üyelik
23.05.2017
-
Yaş/Cinsiyet
27 / E
-
Meslek
Web Tasarım
-
Konum
Samsun
-
Ad Soyad
E** A**
-
Mesajlar
82
-
Beğeniler
10 / 13
-
Ticaret
1, (%100)
$file = "veri.txt";
$satirSayisi = getLines($file);
$satir = rand(0,$satirSayisi);
$i = 0;
$handle = fopen($file, "r");
if ($handle) {
while (($line = fgets($handle)) !== false) {
if($satir === $i){
echo $line;
}
$i++;
}
fclose($handle);
} else {
// error opening the file.
}
function getLines($file)
{
$f = fopen($file, 'rb');
$lines = 0;
while (!feof($f)) {
$lines += substr_count(fread($f, 8192), "\n");
}
fclose($f);
return $lines;
}
?>
1 kişi bu mesajı beğendi.