博客
关于我
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/

你可能感兴趣的文章
Node.js 在个推的微服务实践:基于容器的一站式命令行工具链
查看>>
Node.js 实现类似于.php,.jsp的服务器页面技术,自动路由
查看>>
Node.js 异步模式浅析
查看>>
node.js 怎么新建一个站点端口
查看>>
Node.js 文件系统的各种用法和常见场景
查看>>
Node.js 模块系统的原理、使用方式和一些常见的应用场景
查看>>
Node.js 的事件循环(Event Loop)详解
查看>>
node.js 简易聊天室
查看>>
Node.js 线程你理解的可能是错的
查看>>
Node.js 调用微信公众号 API 添加自定义菜单报错的解决方法
查看>>