(6 янв 2014, 16:06) (
0/
0)
[
0]
I Love Миледи, даже два
(6 янв 2014, 02:09) (
0/
0)
[
0]
Islamfon, $n = rand($start, $end);
Замени на $res = rand($start, $end);
Я сегодня мастер бесконечных циклов
(6 янв 2014, 02:09) (
0/
0)
[
0]
Islamfon, $n = rand($start, $end);
Замени на res = rand($start, $end);
Я сегодня мастер бесконечных циклов
(5 янв 2014, 22:46) (
0/
0)
[
0]
<?php
function nerand($start, $end, $numb) {
while(!$res) {
$n = rand($start, $end);
for($i = 0; $i < count($numb); $i++) {
if($numb[$i] == $n) $res = false;
}
}
return $res;
}
?>
юзать
<?php
$num[] = 5;
$num[] = 6;
$chislo = nerand(1, 10, $numb);
echo $us[$chislo];
?>