php生成验证码函数_php技巧

php生成验证码的函数,实用靠谱。先上下生成的验证码的效果图(这里生成的是全数字的验证码的示例效果):

下面是php生成验证码的源码:

<?php
session_start();
//session_register('CheckCode');
//PHP4.2以上版本不需要用session_register()注册SESSION变量
$type='gif';
$width= 45;
$height= 20;
header("Content-type: image/".$type);
srand((double)microtime()*1000000);
if(isset($_GET['action'])){
 $randval=randStr(4,$_GET['action']);
}else{
 $randval=randStr(4,'');
}
if($type!='gif'&&function_exists('imagecreatetruecolor')){
 $im=@imagecreatetruecolor($width,$height);
}else{
 $im=@imagecreate($width,$height);
}
$r=Array(225,211,255,223);
$g=Array(225,236,237,215);
$b=Array(225,236,166,125);
$key=rand(0,3);
$backColor=ImageColorAllocate($im,$r[$key],$g[$key],$b[$key]);//背景色(随机)
$borderColor=ImageColorAllocate($im,127,157,185);//边框色
$pointColor=ImageColorAllocate($im,255,170,255);//点颜色
@imagefilledrectangle($im,0,0,$width - 1,$height - 1,$backColor);//背景位置
@imagerectangle($im,0,0,$width-1,$height-1,$borderColor); //边框位置
$stringColor=ImageColorAllocate($im,255,51,153);
for($i=0;$i<=100;$i++){
 $pointX=rand(2,$width-2);
 $pointY=rand(2,$height-2);
 @imagesetpixel($im,$pointX,$pointY,$pointColor);
}
@imagestring($im,5,5,1,$randval,$stringColor);
$ImageFun='Image'.$type;
$ImageFun($im);
@imagedestroy($im);
$_SESSION['CheckCode']=$randval;
function randStr($len=6,$format='ALL'){
 switch($format){
  case 'ALL'://生成包含数字和字母的验证码
   $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; break;
  case 'CHAR'://仅生成包含字母的验证码
   $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; break;
  case 'NUMBER'://仅生成包含数字的验证码
   $chars='0123456789'; break;
  default :
   $chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; break;
 }
 $string='';
 while(strlen($string)<$len)
 $string.=substr($chars,(mt_rand()%strlen($chars)),1);
 return $string;
}

 该函数的具体使用方法请看如下这个示例(这里是生成全数字的验证码):

<img src="checkCode.php?action=NUMBER" width="45" height="20" /> 

以上就是php如何生成验证码的实现函数,希望对大家的学习有所帮助。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索php生成验证码
php验证码函数
php 生成验证码、php生成验证码图片、php生成中文验证码、php随机生成验证码、php生成短信验证码,以便于您获取更多的相关知识。

时间: 2024-12-01 05:15:44

php生成验证码函数_php技巧的相关文章

php递归实现无限分类生成下拉列表的函数_php技巧

复制代码 代码如下: /*------------------ */ //– 递归实现无限分类生成下拉列表函数 //– $tpl->assign('sort_list',createSortOptions ()); //– $tpl->assign('sort_list',createSortOptions ($sort_id)); /*------------------ */ function createSortOptions ($selected=0,$parent_id=0,$n=-

.net生成验证码_实用技巧

本文为大家分享了.net生成验证码所有代码,大家可以动手操作一下,会有意想不到的收获. 先给大家看看效果图: 页面代码: <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>验证码</title> <script type="text/javascript"> //换一张 function ch

非常实用的php验证码类_php技巧

本文实例为大家分享了php验证码类,供大家参考,具体内容如下 <?php /** * * @author Administrator * */ class ValidateCode{ private $width; private $height; private $codeNum; private $img_resouce; private $disturbColorNum; private $checkCode; function __construct($width=80,$height=

php生成短域名函数_php技巧

php生成短域名函数 public function createRandCode($string) { $code = ''; $hex_code = '1qaz2wsx3edc4rfv5t-gb6yhn7ujm8ik9ol0p_'; $now = microtime(true) * 10000; $strlen = strlen($hex_code); $hash_code = hash('sha256', $string); // 这里会为编码定义一个随机的长度,长度取决于step $st

PHP+Mysql实现多关键字与多字段生成SQL语句的函数_php技巧

本文实例讲述了PHP+Mysql实现多关键字与多字段生成SQL语句的函数的方法.分享给大家供大家参考.具体实现方法如下: 先看实例: 复制代码 代码如下: $keyword="1 2 3"; echo $sql=search($keyword,"enter_gongyin_pic","a+b+c"); //函数生成,没有LIMIT,没有ORDER BY 生成: 复制代码 代码如下: SELECT * FROM `enter_gongyin_pic

PHP随机生成唯一HASH值自定义函数_php技巧

网上有很多种方法获取随机唯一的HASH值,但是大同小异: 1.先获取随机的唯一字符串 2.进行MD5或者sha1算HASH值 一个项目要用到hash值,就去网上找了找,却发现PHP有一个函数能直接生成唯一字符串--uniqid(),通过使用这个函数,再加上自己生成的随机数(防止被破解),更具有唯一性且不易被猜解.主要考虑问题如下: 1.随机的效率与随机性:rand和mt_rand函数的选择,首选mt_rand,效率高,随机性好: 2.随机次数:选择5次,本来unniqid就是唯一的,加上随机的可

php生成数字字母的验证码图片_php技巧

php生成数字字母的验证码图片 <?php header ('Content-Type: image/png'); $image=imagecreatetruecolor(100, 30); $color=imagecolorallocate($image, 255, 255, 255); imagefill($image, 20, 20, $color); //只含有数字 // for($i=0;$i<4;$i++){ // $font=6; // $x=rand(5,10)+$i*100/

如何用php生成扭曲及旋转的验证码图片_php技巧

复制代码 代码如下: <?php function make_rand($length="32"){//验证码文字生成函数         $str="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";     $result="";     for($i=0;$i<$length;$i++){         $num[$i]=rand(0,61);   

PHP生成不同颜色、不同大小的tag标签函数_php技巧

复制代码 代码如下: function getTagStyle(){ $minFontSize=8; //最小字体大小,可根据需要自行更改 $maxFontSize=18; //最大字体大小,可根据需要自行更改 return 'font-size:'.($minFontSize+lcg_value()*(abs($maxFontSize-$minFontSize))).'px;color:#'.dechex(rand(0,255)).dechex(rand(0,196)).dechex(rand