|  | การสุ่มเลขมาพิมพ์อย่างง่าย (domaindlx.com) |  | 
| ข้อควรทราบ | 
| 
 | 
| โปรแกรมสุ่มตัวเลข โดยใช้เฉพาะส่วนของ php (แต่เอาไปใช้งานได้ทันที ไม่ต้องแก้ไขอีก) | 
| ผลลัพธ์ที่ต้องการ | Source code ที่ไม่ได้เขียน แต่ตัดบางส่วนมาจาก tstrand.php | 
| 1 : 39 2 : 23 3 : 90 4 : 28 5 : 56 | 
<?
srand((double)microtime()*1000000);
for ($i=1 ; $i <= 5;$i++){
   $v = rand(0,100);
   echo $i ," : ",$v,"<br>";
}
?>
Click here เพื่อทดสอบโปรแกรม http://www.thaiall.com/php/tstrand.php | 
| โปรแกรมสุ่มตัวเลข โดยแบ่งสีแดง น้ำเงิน ตามเลขคู่ และคี่ | 
| ผลลัพธ์ที่ต้องการ | Source code ของ tstrand.php | 
| This is the random number : | 
<body bgcolor=#ffffff text=#000000>
<font face=arial size=0>
This is the random number :<br>
(Odd is red, Even is blue)<hr>
<font color=#ff0000>
<?
srand((double)microtime()*1000000);
for ($i=1 ; $i <= 5;$i++){
   $v = rand(0,100);
   $d = $v % 2;
   if ($d == 0) { echo "<font color=#0000ff>";  }
   echo $i ," : ",$v,"<br>";
   if ($d == 0) { echo "</font>";  }
}
?>
<hr>
</font>
bye
</body>
- Click here เพื่อดูผลการประมวลผลจาก http://www.thaiall.com/php/tstrand.php | 
| แบบฝึกหัด | 
| 
 | 
|  | + ผู้สนับสนุน + รับผู้สนับสนุน |