PHP简单实例
匹配字符格式
‘\’为转义字符
‘\w’匹配任意一个数字、字母、或下划线,等价于【0-9a-zA-Z】
‘+’匹配1次或多次其前的原子
‘\d’为匹配任意一个十进制数字。等价于【0-9】
PHP生成验证码
1、背景设置:imagefill($image,0,0, $color1)
生成图片大小:
$image=imagecreatetruecolor(x_size,y_size)
设置背景颜色 :int col表示要填充的颜色
$color1=imagecolorallocate(int image,255,255,255);
2、验证码设置:
imagestring($image,$fontsize,$x,$y,$code,$color2);
设置字体大小:$fontsize
设置字体颜色:$color2=imagecolorallocate($image,rand() , rand(), rand());(1-120为深颜色)
设置变量生成随机验证码:$code=””;$code.=rand(0,9);
设置坐标:$x,$y
3、添加像素干扰
雪花点:
imagesetpixel($image, rand(), rand(), $color3);
设置点的颜色:$color3= imagecolorallocate($image,rand() , rand(), rand());(50-200颜色较浅)
线:
imageline($image,rand()rand(),rand(),rand(),$color4);
$color4= imagecolorallocate($image,rand() , rand(), rand());
4、生成验证码
header(“content-type:image/png”);//通知浏览器这不是文本而是图像
imagepng($img);生成png格式的图片输出给浏览器
imagedestroy($img);销毁图像资源,释放画布占用的内存空间
注:学习笔记