การสร้าง Captcha ด้วย php ตัวอย่างการสร้าง Captcha ด้วย php
อยากได้ Catpcha ด้วย
Date :
13 Sep 2547 12:25:38
By :
123456789
ขั้นตอนแรกให้สร้างไฟล์ captcha.php ภายในไฟล์เขียนโค๊ดดังนี้
Code (PHP)
<? session_start();
class CaptchaSecurityImages {
var $font = 'font.ttf'; // เปลี่ยน font ได้ตามต้องการ
function generateCode($characters) {
$possible = 'abcdefghjkmnpqrstvwxyz'; // ตัวอักษรที่ต้องการจะเอาสุ่มเป็น Captcha
$code = '';
$i = 0;
while ($i < $characters) {
$code .= substr($possible, mt_rand(0, strlen($possible)-1), 1);
$i++;
}
return $code;
}
function CaptchaSecurityImages($width='120',$height='40',$characters='6') {
$code = $this->generateCode($characters);
$font_size = $height * 0.9; // font size ที่จะโชว์ใน Captcha
$image = imagecreate($width, $height) or die('Cannot initialize new GD image stream');
$background_color = imagecolorallocate($image, 255, 255, 255); // กำหนดสีในส่วนต่่างๆ
$text_color = imagecolorallocate($image, 141, 192, 42);
$noise_color = imagecolorallocate($image, 172, 208, 95);
for( $i=0; $i<($width*$height)/5; $i++ ) { // สุ่มจุดภาพพื้นหลัง
imagefilledellipse($image, mt_rand(0,$width), mt_rand(0,$height), 1, 1, $noise_color);
}
for( $i=0; $i<($width*$height)/200; $i++ ) { // สุ่มเ้ส้นภาพพื้นหลัง
imageline($image, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $noise_color);
}
/* สร้าง Text box และเพิ่ม Text */
$textbox = imagettfbbox($font_size, 0, $this->font, $code) or die('Error in imagettfbbox function');
$x = ($width - $textbox[4])/2;
$y = ($height - $textbox[5])/2;
imagettftext($image, $font_size, 0, $x, $y, $text_color, $this->font , $code) or die('Error in imagettftext function');
/* display captcha image ไปที่ browser */
header('Content-Type: image/jpeg');
imagejpeg($image);
imagedestroy($image);
$_SESSION['security_code'] = $code;
}
}
$width = isset($_GET['width']) && $_GET['height'] < 600 ? $_GET['width'] : '120';
$height = isset($_GET['height']) && $_GET['height'] < 200 ? $_GET['height'] : '40';
$characters = isset($_GET['characters']) && $_GET['characters'] > 2 ? $_GET['characters'] : '6';
$captcha = new CaptchaSecurityImages($width,$height,$characters); ?>
ขั้นตอนที่สอง สร้างไฟล์ getdata.php ใว้ใน Folder เดียวกันกับ captcha.php โดยภายในโค๊ดเขียนดังนี้
Code (PHP)
<?php
session_start();
if($_REQUEST['task']=='add'){ //หากมีการ Submit ข้อมูลผ่าน From มา
if($_SESSION['security_code']!=$_POST['secret_code']) { // Check
echo "<p>คุณใส่รหัสตัวอักษรไม่ถูกต้องกรุณากรอกใหม่</p>";
}else{
echo "<p>รหัสถูกต้อง (สามารถใส่โค๊ดบันทีก หรือโค๊ดอะไรก็ได้ที่ต้องการ)</p>";
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<form method="post" action="?task=add">
<input name="name" type="text" /><br /><br />
<input name="detail" type="text" /><br /><br />
<iframe name="a"src="captcha.php?width=100&height=40&characters=5" alt="captcha" frameborder="0" width="120" height="60" scrolling="no"></iframe>
<a href="captcha.php?width=100&height=40&characters=5" target="a"><img src="refresh.gif" width="13" height="13" border="0" /></a><br />
<br />
พิมพ์อักขระ ตามที่คุณเห็นในภาพ วิธีการนี้จะช่วยป้องกันการลงทะเบียนโดยอัตโนมัติ<br />
<input name="secret_code" type="text" /><br /><br />
<input type="submit" value="submit" />
</form>
</body>
</html
ต่อมาก็ดาวน์โหลด font.ttf และ refresh.gif ตามไฟล์ที่แนบมา เอาไปใว้ใน Folder เดียวกับไฟล์ getdata.php ,captcha.php
เสร็จแล้วก็ลองรันไฟล์ getdata.php เทสดูเลยครับ นี่เป็นเพียงตัวอย่างเฉยๆ ลองนำไปประยุกต์ใช้ดูครับ
ดาวโหลดฟ้อนท์กับปุ่มที่นี่ http://bc46.com/forum/index.php?action=dlattach;topic=67.0;attach=77
หากติดปัญหาไรถามกันได้ครับถ้าว่างแล้วจะมาตอบ
Date :
2011-09-05 21:40:45
By :
สุนทร
นำ session_start() ไปไว้บรรทัดบนสุดครับ
Date :
2012-01-07 10:51:53
By :
bomb_dekphee
มีประโยชน์มากครับ ขอบคุณมากครับ
Date :
2015-01-12 15:30:00
By :
มดตะนอย
สอบถามครับ ทำไมค่า $_SESSION['security_code'] กับตัวอักรขะที่แสดงไม่ตรงกันคับ ค่า $_SESSION['security_code'] จะช้ากว่า 1 ครั้ง
หมายถึง ถ้าค่าในรูปแสดงเป็น A112 ค่า $_SESSION['security_code'] จะแสดงค่าของก่อนหน้าหนี้น่ะ
Date :
2016-03-27 12:06:36
By :
ผดุงศักดิ์
ต้องดูว่าคุณ คุณแสดงค่าตอนไหน
อาจแสดงค่า session ก่อนมีการเปลี่ยนแปลง ก่อนการส่งรูปออกไป
Date :
2016-03-27 12:13:22
By :
Chaidhanan
Load balance : Server 01