不需要GD库的情况下实现验证码_PHP教程

原创
2016-07-13 17:32:32 693浏览

不需要GD库的情况下实现验证码
(做为现在的主流开发语言)
//+-------------------------------------------------
//| * 文件 validate_image.php(做为现在的主流开发语言)
//| * 功能 实现网站登陆验证码
//| * 版本 1.0.0
//| * 日期 2005-4-1
//| * 作者 西北狼 QQ 500784 cokeyang at hotmail.com
//| * 版权 http://www.adibaby.com[暂时关闭]
//| * 使用方法:
//| 预先在支持GD库的做好一些图片,推荐使用GIF格式,文件名与图片里
//| 面的里面的数字一致,将图片放入一个文件夹。设置CONFIG里面的数据.
//| 引用
//| 验证页面对比
//| $_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//| 引用
//| 验证页面对比
//| $_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."//m.sbmmt.com/m/".$filename.".".$image_ext));
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/508692.htmlTechArticle不需要GD库的情况下实现验证码 ?php (做为现在的主流开发语言) //+------------------------------------------------- //| * 文件 validate_image.php (做为现在的...
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。