PHP full CAPTCHA Code, PHP Verification Code _php Tutorial

Source: Internet
Author: User

PHP Full Verification Code, PHP verification code


 Phprequire_once' String.func.php ';//Verify code via GD library/** * Add validation text * @param int $type * @param int $length*/functionBuildrandomstring ($type=1,$length=4){    $row=''; if($type==1){        $row=Join('',Range(0, 9)); }Else if($type==2){        $row=Join('',Array_merge(Range(' A ', ' Z '),Range(' A ', ' Z '))); }Else if($type==3){        $row=Join('',Array_merge(Range(' A ', ' Z '),Range(' A ', ' Z '),Range(0, 9)));    }; $row=Str_shuffle($row); $row=substr($row, 0,$length); return $row;}/** * Generate thumbnails * @param int $type//contain numbers or English * @param int $length How many characters * @param int $pixel Interference dot density * @param int $dst _h interference The density of the line * @param the name of the string//verification code in $_session*/functionVerifyimage ($type=1,$length=4,$pixel=0,$line=0,$sess _name= "Verify"){    //session_start (); Create a canvas    $width= 100; $height= 40; $image= Imagecreatetruecolor ($width,$height ); $white= Imagecolorallocate ($image, 255, 255, 255 ); $black= Imagecolorallocate ($image, 0, 0, 0 ); //fill the canvas with filled rectanglesImagefilledrectangle ($image, 1, 1,$width-2,$height-2,$white ); $chars= Buildrandomstring ($type,$length ); $_session[$sess _name] =$chars; //$fontfiles = Array ("Msyh. TTF "," MSYHBD. TTF "," Simli. TTF "," SimSun. TTC "," simyou. TTF "," stzhongs. TTF ");    $fontfiles=Array("Simkai. TTF " ); //because the font file is larger, just keep a font, if the students need to add their own fonts, fonts in your computer's Fonts folder, directly run the input fonts will be able to see the corresponding font     for($i= 0;$i<$length;$i++) {        $size=Mt_rand(14, 18 ); $angle=Mt_rand(-15, 15 ); $x= 5 +$i*$size; $y=Mt_rand(20, 26 ); $fontfile= ".. /fonts/".$fontfiles[Mt_rand(0,Count($fontfiles)-1 )]; $color= Imagecolorallocate ($image,Mt_rand(50, 90),Mt_rand(80, 200),Mt_rand(90, 180 ) ); $text=substr($chars,$i, 1 ); Imagettftext ($image,$size,$angle,$x,$y,$color,$fontfile,$text ); }    if($pixel) {         for($i= 0;$i< 50;$i++) {Imagesetpixel ($image,Mt_rand(0,$width-1),Mt_rand(0,$height-1),$black ); }    }    if($line) {         for($i= 1;$i<$line;$i++) {            $color= Imagecolorallocate ($image,Mt_rand(50, 90),Mt_rand(80, 200),Mt_rand(90, 180 ) ); Imageline ($image,Mt_rand(0,$width-1),Mt_rand(0,$height-1),Mt_rand(0,$width-1),Mt_rand(0,$height-1),$color ); }    }    Header("Content-type:image/gif" ); Imagegif ($image ); Imagedestroy ($image );}

Main points: 1, if there is no declaration session_start (); 2, the font can be downloaded in the CMF input fonts to their own defined Fonts folder; 3,$_session [$sess _ Name] can be compared by $_post to obtain the user input verification code.

http://www.bkjia.com/PHPjc/1115251.html www.bkjia.com true http://www.bkjia.com/PHPjc/1115251.html techarticle PHP full captcha Code, PHP verification code? PHP require_once ' string.func.php ';//through the GD Library to do verification code */* * Add verification text * @param int $type * @param int $le Ngth */functi ...

  • 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.