game/support/captcha.class.php
2022-06-07 00:30:34 +03:00

36 lines
634 B
PHP

<?php
Class Captcha{
public $imgDir = 'images'; // директория где хранятся изображения
public $length = '5'; // количество цифр в капче
public function __construct(){
$this->keystring=array();
for($i=0;$i < $this->length;$i++){
$this->keystring[] .= mt_rand(0,9);
}
}
public function draw(){
$img = '';
foreach($this->keystring as $keystring){
$img .= '<img src="'.$this->imgDir.DIRECTORY_SEPARATOR.$keystring.'.gif" border="0">';
}
return $img;
}
public function getKeyString(){
return implode($this->keystring);
}
}
?>