PHP生成图形验证码(大小写字母与数字混合)

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
<?php
    header("content-type:image/png");
    $num = $_GET['num'];
    $imagewidth=60;
    $imageheight=18;
    srand(microtime() * 100000);
 
    $numimage = imagecreate($imagewidth,$imageheight);
    imagecolorallocate($numimage,183,180,83);
    for($i=0;$i<strlen($num);$i++){
        $font = mt_rand(3,5);
        $x = mt_rand(1,8)+$imagewidth*$i/4;
        $y = mt_rand(1,$imageheight/3);
        $color=imagecolorallocate($numimage,mt_rand(0,50),mt_rand(0,150),mt_rand(0,255));
        imagestring($numimage,$font,$x,$y,$num[$i],$color);
    }
    imagepng($numimage);
    imagedestroy($numimage);
?>
 
 
 
调用方法:
<?php
    session_start();
    include_once 'conn/conn.php';
    $pattern = '1234567890abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLOMNOPQRSTUVWXYZ';
    $num = null;
    for($i = 0; $i < 4; $i++) {
        $num .= $pattern{mt_rand(0, 61)};
    }  
?>
 
<div> 验证码:
  <input id="lgchk" type="text" />
  <img src="valcode.php?num=<?php echo $num; ?>" width="55" height="18" /> </div>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:python中的字典用法示例

下一篇:21个值得收藏的Javascript技巧