PHP code 인증 코드 생 성 클래스 정의 와 간단 한 사용 예제
5633 단어 PHP인증번호 생 성 클래스
code.php
<?php
namespace code;
/**
* Class Code
*/
class Code
{
protected $number;//
protected $codeType;//
protected $width;//
protected $height;//
protected $code;//
protected $image;//
/**
* Code constructor.
* @param int $number
* @param int $codeType
* @param int $width
* @param int $height
*/
public function __construct($number=5, $codeType=2, $width=100, $height=40)
{
$this->number = $number;
$this->codeType = $codeType;
$this->width = $width;
$this->height = $height;
$this->code = $this->createCode();
}
/**
*
*/
public function __destruct()
{
imagedestroy($this->image);
}
/**
* code
* @param $name
* @return bool
*/
public function __get($name)
{
if ('code' == $name) {
return $this->$name;
} else {
return false;
}
}
/**
* code
*/
protected function createCode()
{
switch ($this->codeType) {
case 0:
$code = $this->getNum();
break;
case 1:
$code = $this->getChar();
break;
case 2:
$code = $this->getNumChar();
break;
default:
die(' ');
}
return $code;
}
/**
*
* @return string
*/
protected function getNum()
{
$str = join('', range(0,9));
return substr(str_shuffle($str), 0, $this->number);
}
/**
*
* @return string
*/
protected function getChar()
{
$str = join('', range('a', 'z'));
$str = $str . strtoupper($str);
return substr(str_shuffle($str), 0, $this->number);
}
/**
*
* @return string
*/
protected function getNumChar()
{
$num = join('', range(0, 9));
$str = join('', range('a', 'z'));
$str_big = strtoupper($str);
$numChar = $num . $str . $str_big;
return substr(str_shuffle($numChar), 0, $this->number);
}
/**
*
*/
protected function createImage()
{
$this->image = imagecreatetruecolor($this->width, $this->height);
}
/**
*
*/
protected function fillColor()
{
imagefill($this->image, 0, 0, $this->lightColor());
}
/**
*
* @return int
*/
protected function lightColor()
{
return imagecolorallocate($this->image, mt_rand(170, 255), mt_rand(170, 255), mt_rand(170, 255));
}
/**
*
* @return int
*/
protected function darkColor()
{
return imagecolorallocate($this->image, mt_rand(0, 120), mt_rand(0, 120), mt_rand(0, 120));
}
/**
*
*/
protected function drawChar()
{
$width = ceil($this->width/$this->number);
for ($i = 0; $i < $this->number; $i++) {
$x = mt_rand($i * ($width - 5), ($i + 1) * ($width - 5));
$y = mt_rand(0, $this->height - 15);
imagechar($this->image, 5, $x, $y, $this->code[$i], $this->darkColor());
}
}
/**
*
*/
protected function drawDisturb()
{
for ($i= 0; $i < 100; $i++) {
imagesetpixel($this->image, mt_rand(0, $this->width), mt_rand(0, $this->height), $this->darkColor());
}
}
/**
*
*/
protected function drawArc()
{
for ($i = 0; $i < $this->number - 3; $i++) {
imagearc($this->image, mt_rand(5, $this->width), mt_rand(5, $this->height), mt_rand(5, $this->width), mt_rand(5, $this->height),mt_rand(0, 70), mt_rand(300, 360), $this->darkColor());
}
}
/**
*
*/
protected function show()
{
header('Content-Type:image/png');
imagepng($this->image);
}
/**
* image
*/
public function outImage()
{
$this->createImage();//
$this->fillColor();//
$this->drawChar();//
$this->drawDisturb();//
$this->drawArc();//
$this->show();//
}
}
인증 코드 를 보 여 줍 니 다.인증 코드 와 만 료 시간 저장
<?php
include './code/Code.php';
$code = new code\Code();
$code->outImage();
session_start();
$_SESSION['code'] = [
'code' => $code->code,
'exp_time' => time() + (60 * 60 * 10),
];
더 많은 PHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.본 논문 에서 말 한 것 이 여러분 의 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
laravel에 yo에서 angularJs&coffeescript를 사용할 수 있도록 한다.먼저 yo 명령을 사용할 수 있어야하므로 아래에서 설치 global에 설치한 곳에서 laravel의 프로젝트 루트로 이동. 클라이언트 코드를 관리하는 디렉토리를 만들고 이동합니다. 클라이언트 환경 만들기 이것으로 히...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.