以下のコードは、PHP の rand() 関数について学ぶためだけに作成したものです。
<?php
for ($i=0 ; ;$i++ )
{
$a = rand (1, 1000);
$b = rand (1, 1000);
if ($a == $b)
{
echo "A and B variables matched at the number $a which was try number $i on the counter";
break;
}
else
{
echo "Variable a is $a and Variable b is $b on try number $i<br />";
}
}
?>
おそらく乱数は、458、1722、886、202、または 1282 の 5 つの数字のいずれかに常に一致します。
私のコードの問題ですか、それとも rand() 関数の問題ですか?