search
Homephp教程php手册PHP验证码实现代码简单示例

PHP验证码我有讲过很多的实例了,下面我转一朋友的不错的PHP验证码程序,相当的简单各位朋友可参考.

最近无聊没事做,开始做一些php的分享,代码都比较简单,但比较实用,这是四年前写的,几行代码实现四位随机数字的php验证码功能,代码如下:

<?php
session_start();
header("Content-type: image/jpeg");
$img = imagecreate(50, 20);
$white = imagecolorallocate($img, 211, 213, 193);
imagefill($img, 0, 0, $white); < BR < p > for ($i = 0; $i < 4; $i++) {
    $r[$i] = rand(0, 9);
}
$_SESSION[&#39;valid&#39;] = implode("", $r); //在这里写入到session可做后期验证
for ($i = 0; $i < 4; $i++) {
    if (rand(0, 9) % 2 == 0) {
        imagechar($img, 5, ($i + 1) * 8, 4, $r[$i], imagecolorallocate($img, rand(0, 150) , rand(0, 150) , rand(0, 150)));
    } else {
        imagechar($img, 5, ($i + 1) * 8, 2, $r[$i], imagecolorallocate($img, rand(0, 150) , rand(0, 150) , rand(0, 150)));
    }
}
imagejpeg($img);
?>


Statement
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

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools