Table of Contents
php生成验证码函数,php生成验证码
Home php教程 php手册 php生成验证码函数,php生成验证码

php生成验证码函数,php生成验证码

Jun 13, 2016 am 08:53 AM
php Library Functions Verification code

php生成验证码函数,php生成验证码

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

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

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

<&#63;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;

}

Copy after login

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

1

<img  src="/static/imghw/default1.png"  data-src="checkCode.php&#63;action=NUMBER"  class="lazy"    style="max-width:90%"  style="max-width:90%" / alt="php生成验证码函数,php生成验证码" >

Copy after login

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

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1677
14
PHP Tutorial
1280
29
C# Tutorial
1257
24
What happens if session_start() is called multiple times? What happens if session_start() is called multiple times? Apr 25, 2025 am 12:06 AM

Multiple calls to session_start() will result in warning messages and possible data overwrites. 1) PHP will issue a warning, prompting that the session has been started. 2) It may cause unexpected overwriting of session data. 3) Use session_status() to check the session status to avoid repeated calls.

The Compatibility of IIS and PHP: A Deep Dive The Compatibility of IIS and PHP: A Deep Dive Apr 22, 2025 am 12:01 AM

IIS and PHP are compatible and are implemented through FastCGI. 1.IIS forwards the .php file request to the FastCGI module through the configuration file. 2. The FastCGI module starts the PHP process to process requests to improve performance and stability. 3. In actual applications, you need to pay attention to configuration details, error debugging and performance optimization.

What is the significance of the session_start() function? What is the significance of the session_start() function? May 03, 2025 am 12:18 AM

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.

Composer: Aiding PHP Development Through AI Composer: Aiding PHP Development Through AI Apr 29, 2025 am 12:27 AM

AI can help optimize the use of Composer. Specific methods include: 1. Dependency management optimization: AI analyzes dependencies, recommends the best version combination, and reduces conflicts. 2. Automated code generation: AI generates composer.json files that conform to best practices. 3. Improve code quality: AI detects potential problems, provides optimization suggestions, and improves code quality. These methods are implemented through machine learning and natural language processing technologies to help developers improve efficiency and code quality.

PHP and IIS: Making Them Work Together PHP and IIS: Making Them Work Together Apr 21, 2025 am 12:06 AM

Configuring and running PHP on IIS requires the following steps: 1) Download and install PHP, 2) Configuring IIS and adding FastCGI module, 3) Create and set up an application pool, 4) Create a website and bind to an application pool. Through these steps, you can easily deploy PHP applications on your Windows server and improve application stability and efficiency by configuring scaling and optimizing performance.

How to use MySQL functions for data processing and calculation How to use MySQL functions for data processing and calculation Apr 29, 2025 pm 04:21 PM

MySQL functions can be used for data processing and calculation. 1. Basic usage includes string processing, date calculation and mathematical operations. 2. Advanced usage involves combining multiple functions to implement complex operations. 3. Performance optimization requires avoiding the use of functions in the WHERE clause and using GROUPBY and temporary tables.

H5: Key Improvements in HTML5 H5: Key Improvements in HTML5 Apr 28, 2025 am 12:26 AM

HTML5 brings five key improvements: 1. Semantic tags improve code clarity and SEO effects; 2. Multimedia support simplifies video and audio embedding; 3. Form enhancement simplifies verification; 4. Offline and local storage improves user experience; 5. Canvas and graphics functions enhance the visualization of web pages.

Composer: The Package Manager for PHP Developers Composer: The Package Manager for PHP Developers May 02, 2025 am 12:23 AM

Composer is a dependency management tool for PHP, and manages project dependencies through composer.json file. 1) parse composer.json to obtain dependency information; 2) parse dependencies to form a dependency tree; 3) download and install dependencies from Packagist to the vendor directory; 4) generate composer.lock file to lock the dependency version to ensure team consistency and project maintainability.

See all articles