개발 꿀팁/PHP

php 구현은 혼합 인증 코드와 이미지 인증 코드를 생성하고 테스트한다(코드)

Jammie 2022. 7. 25. 15:01
반응형

이 글은 php 구현에 관한 하이브리드 인증 코드와 이미지 인증 코드를 생성하고 테스트(코드)하는 것으로, 참고가치가 있으니 필요한 분들은 참고하시어 도움이 되시기 바랍니다.
파일 이름: buildVerifyCode.funk.php

//range ('a', 'z') 괄호 안의 내용을 키 값으로 인덱스 배열 생성

// array_merge ($array1,$array2) 두 개의 배열 병합새 인덱스 배열 생성 중 키 값

// array_flip() 괄호 안의 내용, 키 이름과 키 값을 맞바꾸어레이_flip

//array_rand ($array,$length) 랜덤으로 $arr 추출ay에서 $length 길이의 키 이름 새 배열의 키 값으로 인덱스 배열 생성

// join ('', $array) 배열의 값을 빈칸으로 연결하고 배열의 내용으로 단어를 생성합니다.부직
<?php

function buildVerifyCode($type=2,$length=4){

switch ($type) {

    case 0:

    $string=join('',array_rand(range(0,9),$length));

    break;

    case 1:

    $string=join('',array_rand(array_flip(array_merge(range('a','z'),range('A','Z'))),$length));

    break;

    case 2:

    $string=join('',array_rand(array_flip(array_merge(range('a','z'),range('A','Z'),range(0,9))),$length));

    break;

}

return $string;

}

생성된 인증 코드가 올바른지 테스트합니다. 파일 이름:getCode.php

<?php

require 'buildVerifyCode.func.php';

echo buildVerifyCode();

//  $fontfiles=['msyh.ttc','msyhbd.ttc','msyhl.ttc','simsun.ttc','Sitka.ttc'];

//  $fontfile=$fontfiles[mt_rand(0,count($fontfiles)-1)];

// var_dump($fontfile);

이미지 인증 코드를 생성합니다. 자세한 설명은 나중에 쓸 수 있습니다파일명:getVerifyCodeImg.func.php

<?php

$width=100;

$height=30;

//캔버스 만들기, 기본 바탕색,rgb0,0,0

$image=imagecreatetruecolor($width,$height);

//캔버스를 쉽게 덮을 수 있는 흰색 만들기

$white=imagecolorallocate($image,255,255,255);

//흰색 직사각형 덮어쓰기 캔버스 만들기

imagefilledrectangle($image,1,1,$width-2,$height-2,$white);

require 'buildVerifyCode.func.php';

$type=2;

$length=4;

$verifyCode=buildVerifyCode($type,$length);

for($i=0;$i<$length;$i++){

    $color=imagecolorallocate($image,mt_rand(50,90),mt_rand(80,200),mt_rand(90,150));

    $size=mt_rand(14,16);

    $angle=mt_rand(-15,15);

    $x=($i*100/5)+$size;

    $y=mt_rand(20,25);

    $fontfiles=['msyh.ttc','msyhbd.ttc','msyhl.ttc','simsun.ttc','Sitka.ttc'];

    $fontfile="../fonts/".$fontfiles[mt_rand(0,count($fontfiles)-1)];

    $text=substr($verifyCode,$i,1);

    imagettftext($image,$size,$angle,$x,$y,$color,$fontfile,$text);

}

$pixel=120;

if($pixel){

    $pixelcolor=imagecolorallocate($image,mt_rand(150,170),mt_rand(100,140),mt_rand(90,160));

    for($i=0;$i<$pixel;$i++){

        imagesetpixel($image,mt_rand(0,$width-1),mt_rand(0,$height-1),$pixelcolor);

    }

}

$line=4;

if($line){

    for($i=0;$i<$line;$i++){

        imageline($image,mt_rand(0,$width-1),mt_rand(0,$height-1),mt_rand(0,$width-1),mt_rand(0,$height-1),$pixelcolor);

    }

}

 

header('content-type:image/png');

imagepng($image);

imagedestroy($image);

 

반응형