検証コードクラスをカプセル化する
検証コード.class.php
クラス ValidationCode {
プライベート $width;
プライベート $height;
プライベート $codeNum;
private $image //画像リソース
プライベート $disturbColorNum;
プライベート $checkCode;
関数 __construct($width=80, $height=20, $codeNum=4){
$this->width=$width;
$this->height=$height;
$this->codeNum=$codeNum;
$this->checkCode=$this->createCheckCode();
$number=床($幅*$高さ/15);
if($number > 240-$codeNum){
$this->disturbColorNum= 240-$codeNum;
}その他{
$this->disturbColorNum=$number;
}
}
//このメソッドにアクセスして画像をブラウザに出力します
関数 showImage($fontFace=""){
//ステップ 1: 画像の背景を作成する
$this->createImage();
//ステップ 2: 干渉要素を設定する
$this->setDisturbColor();
//ステップ 3: 画像にランダムなテキストを描画します
$this->outputText($fontFace);
//ステップ 4: 画像を出力します
$this->outputImage();
}
//このメソッドを呼び出して、ランダムに作成された検証コード文字列を取得します
関数 getCheckCode(){
$this->checkCode;
を返します
}
プライベート関数 createImage(){
//画像リソースを作成します
$this->image=imagecreatetruecolor($this->幅, $this->高さ);
//ランダムな背景色
$backColor=imagecolorallocate($this->image, rand(225, 255), rand(225,255), rand(225, 255));
//背景に色を追加します
Imagefill($this->image, 0, 0, $backColor);
//枠線の色を設定します
$border=imagecolorallocate($this->image, 0, 0, 0);
// 長方形の枠線を描画します
Imagerectangle($this->image, 0, 0, $this->width-1, $this->height-1, $border);
}
プライベート関数 setDisturbColor(){
for($i=0; $idisturbColorNum; $i++){
$color=imagecolorallocate($this->image, rand(0, 255), rand(0, 255), rand(0, 255));
imagesetpixel($this->image, rand(1, $this->width-2), rand(1, $this->height-2), $color);
}
for($i=0; $i
$color=imagecolorallocate($this->image, rand(200, 255), rand(200, 255), rand(200, 255));
imagearc($this->image, rand(-10, $this->幅), rand(-10, $this->高さ), rand(30, 300), rand(20, 200), 55 、44、$color);
}
}
プライベート関数 createCheckCode(){
$code="23456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJKMNPQRSTUVWXYZ";
$string='';
for($i=0; $i codeNum; $i++){
$char=$code{rand(0, strlen($code)-1)};
$string.=$char;
}
$string を返します;
}
プライベート関数 OutputText($fontFace=""){
for($i=0; $icodeNum; $i++){
$fontcolor=imagecolorallocate($this->image, rand(0, 128), rand(0, 128), rand(0, 128));
If($fontFace==""){
$fontsize=rand(3, 5);
$x=フロア($this->幅/$this->コード番号)*$i+3;
$y=rand(0, $this->height-15);
Imagechar($this->image,$fontsize, $x, $y, $this->checkCode{$i},$fontcolor);
}その他{
$fontsize=rand(12, 16);
$x=floor(($this->width-8)/$this->codeNum)*$i+8;
$y=rand($fontSize+5, $this->高さ);
Imagettftext($this->image,$fontsize,rand(-30, 30),$x,$y ,$fontcolor, $fontFace, $this->checkCode{$i});
}
}
}
プライベート関数outputImage() {
If(imagetypes() & IMG_GIF){
header("Content-Type:image/gif");
Imagepng($this->image);
}else if(imagetypes() & IMG_JPG){
header("Content-Type:image/jpeg");
Imagepng($this->image);
}else if(imagetypes() & IMG_PNG){
header("Content-Type:image/png");
Imagepng($this->image);
}else if(imagetypes() & IMG_WBMP){
header("Content-Type:image/vnd.wap.wbmp");
Imagepng($this->image);
}その他{
Die("PHP はイメージの作成をサポートしていません");
}
}
関数 __destruct(){
Imagedestroy($this->image);
}
}
確認コードクラスを呼び出す
コード.php
session_start();
"validationcode.class.php" を含めます;
$code=新しい検証コード(80, 20, 4);
$code->showImage(); //登録またはログイン用のページに出力します
$_SESSION["code"]=$code->getCheckCode() // 認証コードをサーバーに保存します