編程的藝術(shù) 之 封裝一個驗證碼類(php)
Jun 13, 2016 am 10:53 AM
封裝一個驗證碼類
?validationcode.class.php
?class ValidationCode {
? private $width;
? private $height;
? private $codeNum;
? private $image;?? //圖像資源
? private $disturbColorNum;
? private $checkCode;
? function __construct($width=80, $height=20, $codeNum=4){
?? $this->width=$width;
?? $this->height=$height;
?? $this->codeNum=$codeNum;
?? $this->checkCode=$this->createCheckCode();
?? $number=floor($width*$height/15);
??
?? if($number > 240-$codeNum){
??? $this->disturbColorNum= 240-$codeNum;
?? }else{
??? $this->disturbColorNum=$number;
?? }
?
? }
? //通過訪問該方法向瀏覽器中輸出圖像
? function showImage($fontFace=""){
?? //第一步:創(chuàng)建圖像背景
?? $this->createImage();
?? //第二步:設(shè)置干擾元素
?? $this->setDisturbColor();
?? //第三步:向圖像中隨機(jī)畫出文本
?? $this->outputText($fontFace);
?? //第四步:輸出圖像
?? $this->outputImage();
? }
??
? //通過調(diào)用該方法獲取隨機(jī)創(chuàng)建的驗證碼字符串
? function getCheckCode(){
?? return $this->checkCode;
? }
? private function createImage(){
?? //創(chuàng)建圖像資源
?? $this->image=imagecreatetruecolor($this->width, $this->height);
?? //隨機(jī)背景色
?? $backColor=imagecolorallocate($this->image, rand(225, 255), rand(225,255), rand(225, 255));
?? //為背景添充顏色
?? imagefill($this->image, 0, 0, $backColor);
?? //設(shè)置邊框顏色
?? $border=imagecolorallocate($this->image, 0, 0, 0);
?? //畫出矩形邊框
?? imagerectangle($this->image, 0, 0, $this->width-1, $this->height-1, $border);
? }
? private function? setDisturbColor(){
?? for($i=0; $idisturbColorNum; $i++){
??? $color=imagecolorallocate($this->image, rand(0, 255), rand(0, 255), rand(0, 255));
??? imagesetpixel($this->image, rand(1, $this->width-2), rand(1, $this->height-2), $color);
?? }
?? for($i=0; $i
??? $color=imagecolorallocate($this->image, rand(200, 255), rand(200, 255), rand(200, 255));
??? imagearc($this->image, rand(-10, $this->width), rand(-10, $this->height), rand(30, 300), rand(20, 200), 55, 44, $color);
?? }
? }
? private function createCheckCode(){
?? $code="23456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJKMNPQRSTUVWXYZ";
?? $string='';
?? for($i=0; $i codeNum; $i++){
??? $char=$code{rand(0, strlen($code)-1)};
??? $string.=$char;
?? }
?? return $string;
? }
? private function outputText($fontFace=""){
?? for($i=0; $icodeNum; $i++){
??? $fontcolor=imagecolorallocate($this->image, rand(0, 128), rand(0, 128), rand(0, 128));
??? if($fontFace==""){
???? $fontsize=rand(3, 5);
???? $x=floor($this->width/$this->codeNum)*$i+3;
???? $y=rand(0, $this->height-15);
???? imagechar($this->image,$fontsize, $x, $y, $this->checkCode{$i},$fontcolor);
??? }else{
???? $fontsize=rand(12, 16);
???? $x=floor(($this->width-8)/$this->codeNum)*$i+8;
???? $y=rand($fontSize+5, $this->height);
???? imagettftext($this->image,$fontsize,rand(-30, 30),$x,$y ,$fontcolor, $fontFace, $this->checkCode{$i});
??? }
?? }
? }
? private function outputImage() {
?? if(imagetypes() & IMG_GIF){
??? header("Content-Type:image/gif");
??? imagepng($this->image);
?? }else if(imagetypes() & IMG_JPG){
??? header("Content-Type:image/jpeg");
??? imagepng($this->image);
?? }else if(imagetypes() & IMG_PNG){
??? header("Content-Type:image/png");
??? imagepng($this->image);
?? }else if(imagetypes() & IMG_WBMP){
??? header("Content-Type:image/vnd.wap.wbmp");
??? imagepng($this->image);
?? }else{
??? die("PHP不支持圖像創(chuàng)建");
?? }
? }
? function __destruct(){
?? imagedestroy($this->image);
? }
?}
?
調(diào)用驗證碼類
code.php
session_start();
include "validationcode.class.php";
$code=new ValidationCode(80, 20, 4);
$code->showImage();?? //輸出到頁面中供 注冊或登錄使用
$_SESSION["code"]=$code->getCheckCode();? //將驗證碼保存到服務(wù)器中

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The method to get the current session ID in PHP is to use the session_id() function, but you must call session_start() to successfully obtain it. 1. Call session_start() to start the session; 2. Use session_id() to read the session ID and output a string similar to abc123def456ghi789; 3. If the return is empty, check whether session_start() is missing, whether the user accesses for the first time, or whether the session is destroyed; 4. The session ID can be used for logging, security verification and cross-request communication, but security needs to be paid attention to. Make sure that the session is correctly enabled and the ID can be obtained successfully.

To extract substrings from PHP strings, you can use the substr() function, which is syntax substr(string$string,int$start,?int$length=null), and if the length is not specified, it will be intercepted to the end; when processing multi-byte characters such as Chinese, you should use the mb_substr() function to avoid garbled code; if you need to intercept the string according to a specific separator, you can use exploit() or combine strpos() and substr() to implement it, such as extracting file name extensions or domain names.

In PHP, the most common method is to split the string into an array using the exploit() function. This function divides the string into multiple parts through the specified delimiter and returns an array. The syntax is exploit(separator, string, limit), where separator is the separator, string is the original string, and limit is an optional parameter to control the maximum number of segments. For example $str="apple,banana,orange";$arr=explode(",",$str); The result is ["apple","bana

std::chrono is used in C to process time, including obtaining the current time, measuring execution time, operation time point and duration, and formatting analysis time. 1. Use std::chrono::system_clock::now() to obtain the current time, which can be converted into a readable string, but the system clock may not be monotonous; 2. Use std::chrono::steady_clock to measure the execution time to ensure monotony, and convert it into milliseconds, seconds and other units through duration_cast; 3. Time point (time_point) and duration (duration) can be interoperable, but attention should be paid to unit compatibility and clock epoch (epoch)

ToaccessenvironmentvariablesinPHP,usegetenv()orthe$_ENVsuperglobal.1.getenv('VAR_NAME')retrievesaspecificvariable.2.$_ENV['VAR_NAME']accessesvariablesifvariables_orderinphp.iniincludes"E".SetvariablesviaCLIwithVAR=valuephpscript.php,inApach

PHPhasthreecommentstyles://,#forsingle-lineand/.../formulti-line.Usecommentstoexplainwhycodeexists,notwhatitdoes.MarkTODO/FIXMEitemsanddisablecodetemporarilyduringdebugging.Avoidover-commentingsimplelogic.Writeconcise,grammaticallycorrectcommentsandu

When using PHP preprocessing statements to execute queries with IN clauses, 1. Dynamically generate placeholders according to the length of the array; 2. When using PDO, you can directly pass in the array, and use array_values to ensure continuous indexes; 3. When using mysqli, you need to construct type strings and bind parameters, pay attention to the way of expanding the array and version compatibility; 4. Avoid splicing SQL, processing empty arrays, and ensuring data types match. The specific method is: first use implode and array_fill to generate placeholders, and then bind parameters according to the extended characteristics to safely execute IN queries.

There are three key ways to avoid the "undefinedindex" error: First, use isset() to check whether the array key exists and ensure that the value is not null, which is suitable for most common scenarios; second, use array_key_exists() to only determine whether the key exists, which is suitable for situations where the key does not exist and the value is null; finally, use the empty merge operator?? (PHP7) to concisely set the default value, which is recommended for modern PHP projects, and pay attention to the spelling of form field names, use extract() carefully, and check the array is not empty before traversing to further avoid risks.
