|
|
|
ถามเรื่องการ วนค่าครับ $word[] = rand(0,10);$word[] = rand(0,10);$word[] = rand(0,10);$word[] |
|
|
|
|
|
|
|
คือที่ต้องการไม่ให้ $word[] แต่ละค่าไม่ให้ซ้ำกันใช่ไหม ถ้าใช่ก็ตามนี้นะ
Code (PHP)
<?
$j=0;
$word = array();
while($j<4){
$rand = rand(0,10);
if(!in_array($rand,$word)){
$word[] = $rand;
$j++;
}
}
for($k=0; $k<count($word); $k++){
echo $word[$k]."<br>";
}
?>
|
|
|
|
|
Date :
2010-06-01 23:37:04 |
By :
heng |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|