PHP "Günlük alıntı" anlamıyorum

0 Cevap php

this tutorial diyor Günlük ilham parçası olarak:

$quote = array(
1 => "Quote 1",
2 => "Quote 2",
3 => "Quote 3",
4 => "Quote 4",
5 => "Quote 5",
);
srand ((double) microtime() * 1000000);
$randnum = rand(1,5);
echo"$quote[$randnum]";

Ben burada (gerçekten) ne yaptığını anlamıyorum:

srand ((double) microtime() * 1000000);

Bana bu ne yaptığını anlamak yardım eder misiniz?

I srand() için biliyorum:

Rasgele sayı üreteci Tohum

Ama neden bunu yapıyor, bunun anlamı ne?

BTW: Ben böyle bir şey ile giderdi:

<?php

$quotes = array(

"one",
"two",
"three"

);

echo $quotes[rand(0,count($quotes)-1)];
?>

Bu yanlış bir şey var mı?

0 Cevap