, Google Adsense. Google Analytics, ? , , , PHP.
, PHP.
$test = [0,0,0];
for($i = 0; $i < 100000; $i++) {
$rand = mt_rand(0,2);
$test[$rand]++;
}
var_dump($test);
...
array(3) {
[0]=>
int(33288)
[1]=>
int(33394)
[2]=>
int(33318)
}
33%, 100 000 .
, mt_rand() - PRNG ( ), CSPRNG ( ). , , PRNG. Mersenne Twister, , libc rand(). , , , , PHP mt_rand().