Onatolich, http://koenig.h2m.ru/cf.php
function test_rand ($x) {
$arr = range(0, $x);
return $arr[array_rand($arr)];
}
echo test_rand(-9536);
echo '<br/>';
echo test_rand(936); Onatolich, http://koenig.h2m.ru/cf.php
function test_rand ($x) {
$arr = range(0, $x);
return $arr[array_rand($arr)];
}
echo test_rand(-9536);
echo '<br/>';
echo test_rand(936);