PHP Implementation addition subtraction verification code code _php instance

Source: Internet
Author: User
Tags rand

Copy Code code as follows:

<?php
/* Picture Verification code file, add and subtract calculation mode * *

Class imagecode{

Private $Jiashu = 0; Addends or meiosis
Private $JianShu = 0; Summand or Bing.
Private $YunSuan = '; Operator
Private $DeShu = 0; Count
Private $String = '; String style
Private $Img; Picture objects
Private $Width = 100; Picture width
Private $Height = 50; Picture height
Private $TTF = ' num.ttf ';//font file
Private $Session = ' code '; Session variable

Private Function Jiashu () {
Header (' content-type:image/png ');
$this-> Jiashu = rand (1, 10);
$this-> Jianshu = rand (1, 10);
$this-> yunsuan= $this-> jiashu > $this-> jianshu? '-' : '+';
$this-> Deshu = $this-> jiashu > $this-> jianshu? $this-> jiashu-$this-> jianshu: $this-> Jiashu + $this-> Jianshu;
}

Public function Show ($W = +, $H =, $T = ' Num.ttf ', $Code = ' Code ') {
$this-> Jiashu ();
$this-> String = $this-> Jiashu. $this-> Yunsuan. $this-> Jianshu. '= ? ';
$this-> Width = $W;
$this-> Height = $H;
$this-> TTF = $T;
$this-> session= $Code;
Session_Start ();
$_session[$this-> Session] = $this-> Deshu;
$this-> Images ();
}

Private Function Images () {
$this-> Img = imagecreate ($this-> Width, $this-> Height);
$background _color = imagecolorallocate ($this-> Img, 255, 255, 255);
Imagecolortransparent ($this-> Img, $background _color);
Imagettftext ($this-> img, 0, 1, imagecolorallocate ($this-> img, 0, 0, 0), $this-> Ttf, $this-> St Ring);
$this-> echoimages ();
}

Private Function Echoimages () {
Imagepng ($this-> Img);
Imagedestroy ($this-> Img);
}

}

$ImageCode = new Imagecode;
$ImageCode-> Show (130, the ' Num.ttf ', ' Code ');

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.