博客
关于我
PHP基础-如何实现验证码
阅读量:313 次
发布时间:2019-03-03

本文共 505 字,大约阅读时间需要 1 分钟。

"; 在header前不能有任何输出,否则出现错误$_SESSION['string'] = $string;$image_width = 120;$image_height = 30;$im = imagecreate($image_width,$image_height);$back_color = imagecolorallocate($im,rand(220,255),rand(220,255),rand(220,255));imagefilledrectangle($im,0,0,$image_width,$image_height,$back_color);for($i=0; $i<100; $i++){ $dot_color = imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255)); $x = rand(0,$image_width); $y = rand(0,$image_height); imagesetpixel($im,$x,$y,$dot_color);}for($i=0; $i

 

转载地址:http://fprm.baihongyu.com/

你可能感兴趣的文章
netty--helloword程序
查看>>
netty2---服务端和客户端
查看>>
【Flink】Flink 2023 Flink易用性和稳定性在Shopee的优化-视频笔记
查看>>
Netty5.x 和3.x、4.x的区别及注意事项(官方翻译)
查看>>
netty——bytebuf的创建、内存分配与池化、组成、扩容规则、写入读取、内存回收、零拷贝
查看>>
netty——Channl的常用方法、ChannelFuture、CloseFuture
查看>>