>  기사  >  백엔드 개발  >  cf 형제 선물 꾸러미 인증 코드 PHP 인증 코드 클래스 코드 공유가 클래스로 패키징되었습니다.

cf 형제 선물 꾸러미 인증 코드 PHP 인증 코드 클래스 코드 공유가 클래스로 패키징되었습니다.

PHPz
PHPz원래의
2016-07-29 08:46:122636검색

코드는 다음과 같습니다.

<?php
session_start();
Header("Content-type: image/gif");
class SecurityCode
{
private $codes = &#39;&#39;;
function __construct()
{
$code = &#39;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&#39;;
$codeArray = explode(&#39;-&#39;,$code);
shuffle($codeArray);
$this->codes = implode(&#39;&#39;,array_slice($codeArray,0,4));
}
public function CreateImg()
{
$_SESSION[&#39;check_pic&#39;] = $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 튜토리얼에 관심이 있는 분.


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.