PHP验证码绘制

验证码文件checkCode.php 
<?php

   //使用php绘图技术,画出自己的验证码

   $checkCode="";

   for ($i=0;$i<4;$i++){

    $checkCode.=dechex(rand(1,15));

   }
   //创建画布

   $images1= imagecreatetruecolor(110,30);

   //开启Session

   session_start();

   $_SESSION['checkcode']=$checkCode;

   $color=imagecolorallocate($images1,255,255,255);

   //画出干扰线

   for ($i=0;$i<11;$i++){

    imageline($images1,rand(0,110),rand(0,30),rand(0,110),rand(0,30),imagecolorallocate($images1,rand(0,255),rand(0,255),rand(0,255)));

   }

    imagestring($images1,rand(1,5),rand(0,80),rand(0,23),$checkCode,$color); 

    header("content-type:image/png");

    imagepng($images1);

    imagedestroy($images1);
?> 
 输出验证码文件
<!DOCTYPE img PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd
">

<html>

  <head><meta http-equiv="content-type" content="text/html;charset=utf-8"/></head>

  <body>

  请输入验证码:<img src="checkcode.php" onclick="this.src='checkcode.php?ll='+Math.random()"/>;

</body>

</html>

转载于:https://my.oschina.net/u/1776835/blog/267866

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值