php数字加法运算验证码

代码语言:php

所属分类:验证码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<?php
verifycode();
/**
 * 获取验证码
 * @
 */
 function verifycode($param=null)
{
    $w = 100;   // 宽
    $h = 30;    // 高

    $img = imagecreate($w, $h);

    $red = imagecolorallocate($img, 255, 0, 0);
    $white = imagecolorallocate($img, 255, 255, 255);

    $num1 = rand(1, 20);
    $num2 = rand(1, 20);


    $_realval=$num1+$num2;
    //验证值写入session
    $_SESSION['vercode']=$_realval;
    $gray = imagecolorallocate($img, 118, 151, 199);
    $black = imagecolorallocate($img, mt_rand(0, 100), mt_rand(0, 100), mt_rand(0, 100));

    // 画背景
    imagefilledrectangle($im.........完整代码请登录后点击上方下载按钮下载查看

网友评论0