详情页

PHPCMS V9 简化验证码

时间:2024年02月24日

编辑:佚名

PHPCMS V9:简化验证码
个人感觉phpcmsv9程序中的验证码文字比较复杂且难以辨认,可以修改以下两个
checkcode文件:
phpcms\libs\classes\checkcode.class.php
phpsso_server\phpcms\libs\classes\checkcode.class.php
其实两个文件都一样,一个是在phpcms中使用,一个在phpsso中使用。
1.设置只显示数字
//设置随机生成因子
//public $charset ='abcdefghkmnprstuvwyzABCDEFGHKLMNPRSTUVWYZ23456789':
public $charset ='0123456789';
2.取消或减少文字倾斜和抖动
复制代码
//imagettftext($this-> img,$this->font_size,rand(-30,30),$x*$i+rand(0,5), $this-> height/1.4, $this->fon_tcolor,$this-> font,$this->code[$i]);
imagettftext($this-> img, $this->font_size, rand(-0,0,) $x*$i+rand(0,0,), $this->heiqht/1.4,$this-> font_color, $this->font,$this->code[$i]);
复制代码
3.取消图片画线
$this-> creat_font(); 
//$this-> creat_line();
$this-> output();
相关文章
猜你需要