Php Rand Fonksiyonu ile Rastgele Sayı Üretme
Rand: Belirlediğiniz aralıklarda rastgele sayı üretir.
<?php
echo rand (1,10);
?>
Örnek: 6 Haneli Rastgele Güvenlik kodu üreten program yazalım.
<?php
$harfler = "ABCDEFGHIJKLMNOPRSTUVYZ0123456789";
$guvenlikkodu = "";
for ($x=0;$x<6;$x++)
{
$randharf = rand (0,strlen($harfler)-1);
$randkarekter = substr($harfler,$randharf,1);
$guvenlikkodu.=$randkarekter; // $guvenlikkodu = $guvenlikkodu.$randkarekter
}
echo $guvenlikkodu;
?>