도서관 관리 시스템 소스 코드 PHP는 무작위 확인 코드 이미지 코드를 생성합니다.

WBOY
풀어 주다: 2016-07-29 08:41:44
원래의
1807명이 탐색했습니다.

코드 복사 코드는 다음과 같습니다.


/**기본 홈페이지 **/
class DefaultController는 AppController를 확장합니다
{
public function index() {
$len = 5;
$str = "ABCDEFGHIJKLNMPQRSTUVWXYZ123456789"
$im = imagecreatetruecolor( 70, 20 ); >$bgc = imagecolorallocate($im, 255, 255, 255);
$bgtxt = imagecolorallocate($im, 220, 220, 220)
//임의 팔레트
$colors = array(
imagecolorallocate($im, 255, 0, 0),
imagecolorallocate($im, 0, 200, 0),
imagecolorallocate($im, 0, 0, 255),
imagecolorallocate($ im , 0, 0, 0),
imagecolorallocate($im, 255, 128, 0),
imagecolorallocate($im, 255, 208, 0),
imagecolorallocate($im, 98, 186 , 245),
);
//배경색 채우기
imagefill($im, 0, 0, $bgc)
//무작위로 숫자 가져오기
$verify = "" ;
while (strlen($verify) < $len) {
$i = strlen($verify)
$random = $str[rand(0, strlen($str))];
$verify .= $random;
//배경 텍스트 그리기
imagestring($im, 6, ($i*10) 3, rand(0,6), $random, $bgtxt);
//메인 텍스트 정보 그리기
imagestring($im, 6, ($i*10) 3, rand(0,6), $random, $colors[rand(0, count($colors) -1) ]);
//임의의 노이즈 추가
for($i=0; $i$color = imagecolorallocate($im, rand( 50,220) , rand(50,220), rand(50,220));
imagesetpixel($im, rand(0,70), rand(0,20), $color)
}
//변경 $_SESSION
sess("verify", $verify)에 저장
//이미지 출력 및 캐시 해제
header('Content-type: image/png'); >imagepng($im);
imagedestroy($im)
}
};



위에서는 도서관 관리 시스템 소스 코드의 내용을 포함하여 임의의 확인 코드 이미지 코드를 생성하는 도서관 관리 시스템 소스 코드 PHP를 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!