PHP를 사용하여 디지털 인증 코드 생성
$img = imagecreatetruecolor(100, 40);
$black = imagecolorallocate($img, 0x00, 0x00, 0x00) ;
$green = imagecolorallocate($img, 0x00, 0xFF, 0x00);
$white = imagecolorallocate($img, 0xFF, 0xFF, 0xFF);
imagefill($img,0,0,$ white);
//무작위 인증 코드 생성
$code = '';
for($i = 0; $i < 4; $i++) {
$code .= rand (0, 9);
}
imagestring($img, 5, 10, 10, $code, $black);
//잡음 간섭 추가
for($i=0;$ i imagesetpixel($img, rand(0, 100) , rand(0, 100) , $black)
imagesetpixel($img, rand(0, 100) , rand (0, 100) , $green);
}
//인증 코드 출력
header("content-type: image/png");
imagepng($img);
이미지파괴($img);
위 내용은 관련 내용을 포함하여 PHP 간편인증코드를 소개한 내용이 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.