复制代码 代码如下:
<?php
/*图片验证码文件,加减计算方式*/
class ImageCode{
private $Jiashu = 0; //加数或者减数
private $JianShu = 0; //被加数或者被减数
private $YunSuan = ''; //运算符
private $DeShu = 0; //得数
private $String = ''; //字符串样式
private $Img; //图片对象
private $Width = 100; //图片宽度
private $Height = 50; //图片高度
private $Ttf = 'Num.ttf';//字体文件
private $Session = 'code'; //Session变量
private function JiaShu(){
header('Content-type:image/png');
$this -> Jiashu = rand(1, 10);
$this -> JianShu = rand(1, 10);
$this -> YunSuan= $this -> Jiashu > $this -> JianShu ? '-' : '+';
$this -> DeShu = $this -> Jiashu > $this -> JianShu ? $this -> Jiashu - $this -> JianShu : $this -> Jiashu + $this -> JianShu;
}
public function Show( $W = 100, $H = 50, $T = 'Num.ttf', $Code = 'code' ){
$this -> JiaShu();
$this -> String = $this -> Jiashu . $this -> YunSuan . $this -> JianShu . '= ? ';
$this -> Width = $W;
$this -> Height = $H;
$this -> Ttf = $T;
$this -> Session= $Code;
session_start();
$_SESSION[$this -> Session] = $this -> DeShu;
$this -> Images();
}
private function Images(){
$this -> Img = imagecreate($this -> Width, $this -> Height);
$background_color = imagecolorallocate ($this -> Img, 255, 255, 255);
imagecolortransparent($this -> Img, $background_color);
imagettftext($this -> Img, 14, 0, 1, 20, imagecolorallocate ($this -> Img, 0, 0, 0), $this -> Ttf, $this -> String );
$this -> EchoImages();
}
private function EchoImages(){
imagepng($this -> Img);
imagedestroy($this -> Img);
}
}
$ImageCode = new ImageCode;
$ImageCode -> Show(130, 35, 'Num.ttf', 'code');
php,加减法,验证码代码
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。