代码如下:
<?php /** * 仿QQ验证码 * Edit www. */ //Session保存路径 $sessSavePath = dirname(__FILE__)."/../data/sessions/"; if(is_writeable($sessSavePath) && is_readable($sessSavePath)){ session_save_path($sessSavePath); } session_start(); //获取随机字符 $rndstring = ''; for($i=0; $i<4; $i++) $rndstring .= chr(mt_rand(65,90)); $img_height=45; //先定义图片的长、宽 $img_width=10; //如果支持GD,则绘图 if(function_exists("imagecreate")) { //Firefox部份情况会多次请求的问题,5秒内刷新页面将不改变session $ntime = time(); if(empty($_SESSION['dd_ckstr_last']) || empty($_SESSION['dd_ckstr']) || ($ntime - $_SESSION['dd_ckstr_last'] > 5)) { $_SESSION['dd_ckstr'] = strtolower()($rndstring); $_SESSION['dd_ckstr_last'] = $ntime; } $rndstring = $_SESSION['dd_ckstr']; $rndcodelen = strlen($rndstring); //创建图片,并设置背景色 $im = imagecreate(46,20); ImageColorAllocate($im, 240,243,248); //干扰线 $lineColor1 = ImageColorAllocate($im, mt_rand(174,218),mt_rand(190,225),mt_rand(217,237)); for($j=1;$j<=2;$j=$j+3) { imageline($im,0,$j+mt_rand(1,15),48,$j+mt_rand(1,15),$lineColor1); } //输出文字 $fontColor = ImageColorAllocate($im, mt_rand(0,150),mt_rand(0,150),mt_rand(0,150)); for($i=0;$i<$rndcodelen;$i++) { $bc = mt_rand(0,1); $rndstring[$i] = strtoupper()($rndstring[$i]); imagestring($im,mt_rand(3,5),$i*$img_height/4+mt_rand(1,5),mt_rand(1,$img_width/2), $rndstring[$i], $fontColor); } header("Pragma:no-cache"r"n"); header("Cache-Control:no-cache"r"n"); header("Expires:0"r"n"); //输出特定类型的图片格式,优先级为 gif -> jpg ->png if(function_exists("imagepng")) { header("content-type:image/png"r"n"); imagepng($im); } else { header("content-type:image/jpeg"r"n"); imagejpeg($im); } ImageDestroy($im); exit(); } else { //不支持GD,只输出字母 ABCD $_SESSION['dd_ckstr'] = "abcd"; $_SESSION['dd_ckstr_last'] = ''; header("content-type:image/png"r"n"); header("Pragma:no-cache"r"n"); header("Cache-Control:no-cache"r"n"); header("Expires:0"r"n"); $fp = fopen("data/vdcode.jpg","r"); echo fread($fp,filesize("data/vdcode.jpg")); fclose($fp); exit(); } ?>
您可能感兴趣的文章:
php验证码简单函数代码(附效果图)
分享一个php 验证码类及调用示例
php验证码的三个实例代码分享
一个php验证码的封装类
php自定义大小验证码的实例代码
php生成扭曲及旋转的验证码图片的实例代码
php验证码函数使用的例子
php5验证码类(简易实用型)
php验证码(GD库生成验证码)的例子
php点击验证码实时刷新的实现代码
php图片验证码的例子
php彩色验证码的简单例子
php验证码刷新与局部刷新的实现方法
php GD库生成验证码的实例
php生成验证码的例子
php随机验证码 php生成随机验证码(图文)
一个比较稳定的php登陆系统验证码
用php生成带有雪花背景的验证码
php使用header("location:test.php")进行跳转要注意:
1、location和“:”号间不能有空格,否则会出错。
2、在用header前不能有任何的输出。
3、header后的PHP代码还会被执行。
以下是与asp中重定向response.redirect的比较:
例1:
header("location:../test.php");
两者区别:
asp的redirect函数可以在向客户发送头文件后起作用。
例如:
<%response.redirect "../test.asp"%>
</body></html>
php中下例代码会报错:
<?
header("location:../test.php");
?>
</body></html>
只能这样:
header("location:../test.php");
?>
<html><head></head><body>...</body></html>
即header函数之前不能向客户发送任何数据。
例2:
asp中
<%
response.redirect "../a.asp"
response.redirect "../b.asp"
%>
</body></html>
结果是重定向a.asp文件。
php中:
header("location:../a.php");
header("location:../b.php");
?>
<html><head></head><body></body></html>
发现它重定向b.php了。
原因分析:
asp中执行redirect后不会再执行后面的代码;而php在执行header后,继续执行下面的代码。
在这方面上php header重定向不如asp 重定向。
有时要重定向后,不能执行后面的代码:
一般这样来操作:
if(...)
header("...");
else
{
...
}
更简单的方法:
if(...)
{ header("...");exit();}
注意:
如果是用Unicode(UTF-8)编码时也会出现问题,需要调整缓存设置。
如下:
<%if Request.ServerVariables("SERVER_NAME")="s.xxx.net" then
response.redirect "news/index.htm"
else%>
<%end if%>
<script>
var url = location.href;
if(url.indexOf('http://www.xxx.net/')!=-1)location.href='/index/index.htm';
if(url.indexOf('http://www./')!=-1)location.href='/index1/index.htm';
if(url.indexOf('http://www.xxx.cn/')!=-1)location.href='/cn/index.html';
if(url.indexOf('http://www.baidu.com/')!=-1)location.href='/cn/index.html';
</script>
代码如下:
<script language="javascript">
/**
* php 验证码函数应用举例
* Edit www.
*/
function _code($_code_length = 4, $_width = 75, $_height = 25){
for($i=0;$i<$_code_length;$i++){
$_nmsg .= dechex(mt_rand(0,15));
}
$_SESSION["code"] = $_nmsg;
$_img = imagecreatetruecolor($_width, $_height);
$_white = imagecolorallocate($_img, 250, 250, 250);
imagefill($_img, 0, 0, $_white);
$_gray = imagecolorallocate($_img, 196, 196, 196);
imagerectangle($_img, 0, 0, $_width-1, $_height-1, $_gray);
for ($i=0; $i < 6; $i++) {
$_md_color = imagecolorallocate($_img, mt_rand(200,255), mt_rand(200,255), mt_rand(200,255));
imageline($_img, mt_rand(0,$_width), mt_rand(0, $_height),mt_rand(0,$_width), mt_rand(0, $_height), $_md_color);
}
for ($i=0; $i < 50; $i++) {
$_md_color = imagecolorallocate($_img, mt_rand(200,255), mt_rand(200,255), mt_rand(200,255));
imagestring($_img, 1, mt_rand(1,$_width-5), mt_rand(1, $_height-5), "*", $_md_color);
}
for ($i=0; $i < $_code_length ; $i++) {
$_md_color = imagecolorallocate($_img, mt_rand(0,102), mt_rand(0,102), mt_rand(0,102));
imagestring($_img, 5, $i * $_width/$_code_length+ mt_rand(1, 10), mt_rand(1, $_height/2), $_SESSION["code"][$i], $_md_color);
}
header("Content-Type:image/png");
imagepng($_img);
imagedestroy($_img);
}
</script>