코드는 다음과 같습니다.
<?php session_start(); Header("Content-type: image/gif"); class SecurityCode { private $codes = ''; function __construct() { $code = '0-1-2-3-4-5-6-7-8-9-A-B-C-D-E-F-G-H-I-J-K-L-M-N-O-P-Q-R-S-T-U-V-W-X-Y-Z'; $codeArray = explode('-',$code); shuffle($codeArray); $this->codes = implode('',array_slice($codeArray,0,4)); } public function CreateImg() { $_SESSION['check_pic'] = $this->codes; $img = imagecreate(70,25); imagecolorallocate($img,222,222,222); $testcolor1 = imagecolorallocate($img,255,0,0); $testcolor2 = imagecolorallocate($img,51,51,51); $testcolor3 = imagecolorallocate($img,0,0,255); $testcolor4 = imagecolorallocate($img,255,0,255); for ($i = 0; $i < 4; $i++) { imagestring($img,rand(5,6),8 + $i * 15,rand(2,8),$this->codes[$i],rand(1,4)); } imagegif($img); } } $code = new SecurityCode(); $code->CreateImg(); $code = NULL; ?>
클래스로 캡슐화한 뒤 생성자를 추가해 사용하기 쉽게 했습니다. 소멸자 추가, 메모리 절약 방법 등 이 확인 코드 클래스를 계속해서 개선할 수도 있습니다.
위에서는 cf형제 선물패키 인증코드를 소개합니다. cf형제 선물패키 인증코드 내용을 포함해 PHP 인증코드 공유가 패키지화되어 친구들에게 도움이 되었으면 좋겠습니다. PHP 튜토리얼에 관심이 있는 분.