php图形验证码验证,php生成图形验证码几种方法小结

我们先来检查一下自己的php是不是打开了gd库。

复制代码 代码如下:

if(extension_loaded('gd')) {

echo '你可以使用gd
';

foreach(gd_info() as $cate=>$value)

echo "$cate: $value
";

}else

echo '你没有安装gd扩展';

?>

如果有返回信息就正确可以常用使用了

例1

复制代码 代码如下:

/**

* vCode(m,n,x,y) m个数字  显示大小为n   边宽x   边高y

* 自己改写记录session $code

*/

session_start();

vCode(4, 15); //4个数字,显示大小为15

function vCode($num = 4, $size = 20, $width = 0, $height = 0) {

!$width && $width = $num * $size * 4 / 5 + 5;

!$height && $height = $size + 10;

// 去掉了 0 1 O l 等

$str = "23456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVW";

$code = '';

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

$code .= $str[mt_rand(0, strlen($str)-1)];

}

// 画图像

$im = imagecreatetruecolor($width, $height);

// 定义要用到的颜色

$back_color = imagecolorallocate($im, 235, 236, 237);

$boer_color = imagecolorallocate($im, 118, 151, 199);

$text_color = imagecolorallocate($im, mt_rand(0, 200), mt_rand(0, 120), mt_rand(0, 120));

// 画背景

imagefilledrectangle($im, 0, 0, $width, $height, $back_color);

// 画边框

imagerectangle($im, 0, 0, $width-1, $height-1, $boer_color);

// 画干扰线

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

$font_color = imagecolorallocate($im, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));

imagearc($im, mt_rand(- $width, $width), mt_rand(- $height, $height), mt_rand(30, $width * 2), mt_rand(20, $height * 2), mt_rand(0, 360), mt_rand(0, 360), $font_color);

}

// 画干扰点

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

$font_color = imagecolorallocate($im, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));

imagesetpixel($im, mt_rand(0, $width), mt_rand(0, $height), $font_color);

}

// 画验证码

@imagefttext($im, $size , 0, 5, $size + 3, $text_color, 'c:\WINDOWS\Fonts\simsun.ttc', $code);

$_SESSION["VerifyCode"]=$code;

header("Cache-Control: max-age=1, s-maxage=1, no-cache, must-revalidate");

header("Content-type: image/png;charset=gb2312");

imagepng($im);

imagedestroy($im);

}

?>

例2

使用PHP,结合session和GD库扩展开发的一个生成验证码的例子(w3c推荐),可以很方便的用于项目中。而且样式美观

复制代码 代码如下:

//首先开启session

session_start();

//定义前台显示验证码长&宽

$image_width = 120;

$image_height = 40;

$characters_on_image = 6;

$font = './monofont.ttf';

//The characters that can be used in the CAPTCHA code.

//avoid confusing characters (l 1 and i for example)

$possible_letters = '23456789bcdfghjkmnpqrstvwxyz';

$random_dots = 10;

$random_lines = 30;

$captcha_text_color="0x142864";

$captcha_noice_color = "0x142864";

//定义要生成验证码的字符串

$code = '';

$i = 0;

while ($i < $characters_on_image) {

$code .= substr($possible_letters, mt_rand(0, strlen($possible_letters)-1), 1);

$i++;

}

$font_size = $image_height * 0.75;

$image = @imagecreate($image_width, $image_height);

/* setting the background, text and noise colours here */

$background_color = imagecolorallocate($image, 255, 255, 255);

$arr_text_color = hexrgb($captcha_text_color);

$text_color = imagecolorallocate($image, $arr_text_color['red'],

$arr_text_color['green'], $arr_text_color['blue']);

$arr_noice_color = hexrgb($captcha_noice_color);

$image_noise_color = imagecolorallocate($image, $arr_noice_color['red'],

$arr_noice_color['green'], $arr_noice_color['blue']);

/* generating the dots randomly in background */

for( $i=0; $i

imagefilledellipse($image, mt_rand(0,$image_width),

mt_rand(0,$image_height), 2, 3, $image_noise_color);

}

/* generating lines randomly in background of image */

for( $i=0; $i

imageline($image, mt_rand(0,$image_width), mt_rand(0,$image_height),

mt_rand(0,$image_width), mt_rand(0,$image_height), $image_noise_color);

}

/* create a text box and add 6 letters code in it */

$textbox = imagettfbbox($font_size, 0, $font, $code);

$x = ($image_width - $textbox[4])/2;

$y = ($image_height - $textbox[5])/2;

imagettftext($image, $font_size, 0, $x, $y, $text_color, $font , $code);

/* Show captcha image in the page html page */

header('Content-Type: image/jpeg');// defining the image type to be shown in browser widow

imagejpeg($image);//showing the image

imagedestroy($image);//destroying the image instance

//设置session,做验证

$_SESSION['6_letters_code'] = $code;

function hexrgb ($hexstr)

{

$int = hexdec($hexstr);

return array("red" => 0xFF & ($int >> 0x10),

"green" => 0xFF & ($int >> 0x8),

"blue" => 0xFF & $int);

}

个人推荐推荐第二个生成验证码程序代码,各位同学可尝试参考对比哦,最后一个是W3C标准生成的也是利用了php gd库。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/552375.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

php new static,PHP中new self()和new static()的区别用法

浅谈PHP中new self()和new static()的区别&#xfeff;本文介绍了PHP中new self()和new static()的区别&#xff0c;分享给大家&#xff0c;也给自己留个笔记。1.new static()是在PHP5.3版本中引入的新特性。2.无论是new static()还是new self()&#xff0c;都是new了一个新的对…

php微信开源框架,SOPHP免费微信开源框架 php版 v4.5

SOPHP是一款稳定开源的微信公众平台开发系统,也是基于weiphp开发的第一款商业系统。依托自身强大的钩子功能&#xff0c;她可以帮助大家快速开发出自己想要的微信功能插件&#xff0c;运营近两年来我们收获了上千用户与良好的口碑。作为一个开源产品&#xff0c;希望大家都能参…

php搜索文件名,window_Windows7内置搜索如何同时搜索文件名与内容,  Win7的搜索功能效果非常强 - phpStudy...

Windows7内置搜索如何同时搜索文件名与内容Win7的搜索功能效果非常强大&#xff0c;不但比WinXP快上许多&#xff0c;而且还能即输即显。不过我们在平时使用的时候大家会发现&#xff0c;Win7搜索只能搜索目录中的文件名&#xff0c;却搜索不到文件中的内容。其实不然&#xff…

php去掉编辑器自带样式,phpcms去掉CKEditor编辑器上传图片的宽高样式

phpcms V9后台富文本编辑器使用的是CKEditor&#xff0c;在编辑器上传图片后会自动添加图片宽高的style属性&#xff0c;如何去掉这个属性&#xff1f;找到以下文件&#xff1a;statics\js\ckeditor\plugins\image\dialogs\image.js打开后是压缩包的js文件&#xff0c;用javasc…

java系统管理员停用,为什么犯错让我成为一个更好的系统管理员

诀窍就是同一个错误不要犯两次。到目前为止&#xff0c;我已做了十多年 Fedora 贡献者。 Fedora 有一个由开发者和用户组成的大型社区&#xff0c;其中每一个人&#xff0c;不管是极富洞察力的用户还是出色的程序员&#xff0c;都有一些独有的技能。我喜欢这样的社区&#xff0…

php ajax json 实例,php+ajax+json 详解及实例代码

phpajaxjson 实例代码html页面&#xff1a;$(function(){$("#send").click(function(){var cont $("input").serialize();$.ajax({url:ab.php,type:post,dataType:json,data:cont,success:function(data){var str data.username data.age data.job;$(&…

如何访问静态成员php,php – 如何访问类的静态成员?

如果A是一个类&#xff0c;你可以通过A :: $ strName直接访问它。class A {public static $strName A is my name;}echo A::$strName; // outputs "A is my name"更新&#xff1a;根据你的数组内容&#xff0c;不管我喜欢将其定义为类对象还是类文字&#xff0c;都可…

php.ini用哪个,php.ini:哪一个?

一般来说&#xff0c;当从命令行调用PHP二进制文件时&#xff0c;使用cli / php.ini文件。您可以从命令行检查运行php –ini。当PHP作为FPM运行时将使用fpm / php.ini – 这是nginx安装的情况。您可以检查从您的网络服务器服务的php页面调用phpinfo()。cgi / php.ini&#xff0…

php黄页,PHP 黄页的url

首页http://localhost/index.php?myp&ccom_index&userid10产品&#xff1a;http://localhost/index.php?myp&ccom_index&amodel&modelid13&userid10产品单页&#xff1a;http://localhost/index.php?myp&ccom_index&ashow&modelid13&am…

mysql中数组转list,Arrays.asList(T... a) 不转换基本类型数组值为list

随手总结一下&#xff0c;数组转换为list总结int[] a1 new int[] { 1, 2, 3, 4 };String[] a2 new String[] { "srt1", "srt2", "srt3", "srt4" };System.out.println(a1.getClass().getName() ": " Arrays.asList(a1))…

php swoole process,PHP swoole的process模块创建和使用子进程操作示例

本文实例讲述了PHP swoole的process模块创建和使用子进程操作。分享给大家供大家参考&#xff0c;具体如下&#xff1a;swoole中为我们提供了一个进程管理模块 Process&#xff0c;替换PHP的 pcntl 扩展&#xff0c;方便我们创建进程&#xff0c;管理进程&#xff0c;和进程间的…

php什么是静态类,三.PHP静态类

3.PHP静态类/******************8PHP静态类*************/class Shtml{var $Templet;var $DataSource;var $Dir;var $fileName;var $mod;var $handle;function Shtml($fileName ""){$this->fileName $fileName;$this->mod "wb";$this->handle …

php 五颗星评价,简单实现点触/输入值给五颗星评价

先上效果图gif.gif1.码UI。。。UILabel *label [[UILabel alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, 30)];label.text "点击星星可以自动获取评分哦&#xff5e;";label.textColor [UIColor whiteColor];label.textAlignment NSTextAlignmentCenter;…

PHP服务器端语言是什么意思,PHP作为服务器端语言,有哪些优点?

php语言作为一门强健的服务器端语言&#xff0c;汇集多种语言优点于一身&#xff0c;为web落地页提供快速便捷的服务&#xff0c;亿速云为您详细解答php语言的相关优点。1、本地化使用其他语言编写的网站在访问者进入网站时&#xff0c;会通过语言翻译程序分析访问者的母语&…

switch语句php,PHPswitch 语句 - PHP教程

PHP switch 语句有时&#xff0c;为了避免 if 语句过于冗长&#xff0c;提高程序的可读性&#xff0c;可以使用 switch 分支控制语句。switch 语句用于根据多个不同条件执行不同动作。如果您希望有选择地执行若干代码块之一&#xff0c;请使用 switch 语句。语法switch (n){cas…

oracle1461,Oracle 10.2.0.3的ORA-1461错误

Oracle 10.2.0.3的ORA-1461错误ORA-1461 encountered when generating server alert SMG-3500经研究发现&#xff0c;其是Oracle 10g的一个Bug&#xff0c;并且目前只有Oracle 10.2.0.3会遇到&#xff1a;造成这个错误的原因是由于SMON 进程正在 UPDATE SMON_SCN_TIME表时引发了…

oracle数据库表空间如何清理,oracle数据库清理临时表空间

方法一、重启库   库重启时&#xff0c;Smon进程会完成临时段释放,TEMP表空间的清理操作&#xff0c;不过很多的时侯我们的库是不允许down的,所以这种方法缺少了一点的应用机会&#xff0c;不过这种方法还是很好用的。   法二、Metalink给出的一个方法   修改一下TEMP表空…

matlab cam orbit,Matlab的绘图函数

在Matlab的命令窗口中键入doc graph2d/graph3d/specgraph 可以获得详细的帮助graph2dTwo dimensional graphs.Elementary X-Y graphs.plot - Linear plot.loglog - Log-log scale plot.semilogx - Semi-log scale plot.semilogy - Semi-log scale plot.polar - Polar coordinat…

oracle数据库编程实验2答案,Oracle数据库-作业2-答案

第二次书面作业答案(作业在2013.5.15之前交,使用学院统一的作业封面&#xff0c;题目可以打印&#xff0c;答题内容必须手写)一、填空题1&#xff0e;PL/SQL程序块主要包括3个主要部分&#xff1a;声明部分、执行部分和理 部分。2&#xff0e;使用显式游标主要包括4个步骤&…

linux uefi无法启动文件,解决UEFI安装无法启动的问题

前言我们产品是支持UEFI安装的&#xff0c;在很多款机器上都正常的安装。今日在浪潮服务器和技嘉服务器上都遇到一次&#xff0c;可以安装&#xff0c;但是无法正常启动。所以我们必须要解决此问题&#xff0c;来支持更多的硬件。基础知识EFI的全称是&#xff0c;Extensible Fi…