不需要GD庫的情況下實作驗證碼
作者:Eve Cole
更新時間:2009-06-01 17:49:03
不需要GD庫的情況下實作驗證碼
<?php
//+----------------------------------------------- --
//| * 檔案 validate_image.php
//| * 功能 實現網站登陸驗證碼
//| * 版本 1.0.0
//| * 日期 2005-4-1
//| * 作者 西北狼QQ 500784 cokeyang at hotmail.com
//| * 版權所有http://www.adibaby.com [暫時關閉]
//| * 使用方法:
//| 預先在支援GD庫的做好一些圖片,建議使用GIF格式,檔案名稱與圖片裡
//| 面的裡面的數字一致,將圖片放入一個資料夾。設定CONFIG裡面的數據.
//| 引用<IMG SRC="{ filepath }/validate_image.php">
//| 驗證頁面對比
//| $_COOKIE['validate'] == md5($_POST['input'])
//|==================CONFIG START===================
$image_path="numimage";// 圖片檔案路徑後面沒有'/'
$image_ext ="gif";// 圖片檔案副檔名
//===================CONFIG END=====================
$imagelist = array();
if ($handle =opendir($image_path)) {
while (false !== ($file =readdir($handle))) {
$filename =explode(".",$file);
$imagelist[] = $filename[0];
unset($filename);
}
closedir($handle);
unset($imagelist[0]);
unset($imagelist[1]);
}
srand((float)microtime()*103E//| 引用<IMG SRC="{ filepath }/validate_image.php">
//| 驗證頁面對比
//| $_COOKIE['validate'] == md5($_POST['input'])
//|==================CONFIG START===================
$image_path="numimage";// 圖片檔案路徑後面沒有'/'
$image_ext ="gif";// 圖片檔案副檔名
//===================CONFIG END=====================
$imagelist = array();
if ($handle =opendir($image_path)) {
while (false !== ($file =readdir($handle))) {
$filename =explode(".",$file);
$imagelist[] = $filename[0];
unset($filename);
}
closedir($handle);
unset($imagelist[0]);
unset($imagelist[1]);
}
srand((float)microtime()*10000000);
$filename=$imagelist[array_rand($imagelist)];
setcookie("validate",md5($filename));
header('Content-type: application/'.$image_ext);
echo implode('',file($image_path."/".$filename.".".$image_ext));
?>