好好学习,东方不败。

做个努力的小伙。

  博客园  :: 首页  :: 新随笔  ::  ::  :: 管理
php随机验证码:
<?php
     $image_width=140;
     $image_height=50;
     srand(microtime()*10000);
     for($i=0;$i<4;$i++){
              $number.=dechex(rand(0,15));
            }
    $check=$number;
    $im=imagecreate($image_width,$image_height);
    imagecolorallocate($im,255,255,255);
    for($i=0;$i<strlen($check);$i++){
        $font=rand(40,80);
        $x=rand(1,8)+$image_width*$i/4;
        $y=rand(1,$image_height/4);
        $color=imagecolorallocate($im,rand(0,100),rand(0,150),rand(0,200));
        imagestring($im,$font,$x,$y,$check[$i],$color);
        }
        imagepng($im);

        imagedestroy($im);
?>
posted on 2013-12-13 08:04  snowfly123  阅读(207)  评论(0编辑  收藏  举报