 |
|
|
 |
 |
|
เอาโค้ด มาดูหน่อยซิ
ลองเป็นสี บ้างยัง
|
 |
 |
 |
 |
Date :
10 ก.ค. 2550 02:07:21 |
By :
arsachi |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ส่วนนี้เป็น code image สร้างภาพ
<?php
// create a 100*30 image
$im = imagecreate(65, 21);
// white background and blue text
$bg = imagecolorallocate($im, 0, 0, 0);
$textcolor = imagecolorallocate($im, 255, 255, 255);
// write the string at the top left
//imagestring($im, 5, 0, 0, "ThaiCreate.Com Random Password", $textcolor);
imagestring($im, 10, 7,4, $str, $textcolor);
// output the image
header("Content-type: image/png");
imagepng($im);
imagedestroy($im);
?>
นี่เป็น function random ตัวเลข
function ranDomStr($length){
$str2ran = '123456789';
$str_result = "";
while(strlen($str_result)<$length){
$str_result .= substr($str2ran,(rand()%strlen($str2ran)),1);
}
return($str_result);//ส่งค่ากลับ
}
$ran_str = randomstr(6); //สั่ง random string
?>
เวลาเรียกใช้งาน
<?
print("<imgsrc=image.php?str=$ran_str>");
?>
|
 |
 |
 |
 |
Date :
10 ก.ค. 2550 09:44:36 |
By :
por |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|