PHP验证码之数字运算验证码

php中文网
发布: 2016-06-23 13:29:42
原创
1195人浏览过

<?php//如果对代码不理解请看我上一篇的详细解答。//数字验证码:http://my.oschina.net/u/2391943/blog/485163getValidate(100,30);function getValidate($w,$h){$img = imagecreate($w,$h);$gray = imagecolorallocate($img,255,255,255);$black = imagecolorallocate($img,rand(0,200),rand(0,200),rand(0,200));$red = imagecolorallocate($img, 255, 0, 0);$white = imagecolorallocate($img, 255, 255, 255);$green = imagecolorallocate($img, 0, 255, 0);$blue = imagecolorallocate($img, 0, 0, 255);imagefilledrectangle($img, 0, 0, 100, 30, $black);for($i = 0;$i < 80;$i++){imagesetpixel($img, rand(0,$w), rand(0,$h), $gray);}$num1 = rand(1,99);$num2 = rand(1,99);imagestring($img, 5, 5, rand(1,10), $num1, $red);imagestring($img,5,30,rand(1,10),getRand(), $white);imagestring($img,5,45,rand(1,10),$num2, $green);imagestring($img,5,65,rand(1,10),"=", $blue);imagestring($img,5,80,rand(1,10),"?", $red);header("content-type:image/png");imagepng($img);imagedestroy($img);}function getRand(){$code = rand(0,1);switch ($code) {case 0:return "+";break;case 1:return "-";break;default:# code...break;}}?>
登录后复制

钟志远  江苏南京  钟志远

jQuery英文数字组合表单验证码特效
jQuery英文数字组合表单验证码特效

jQuery英文数字组合表单验证码特效,是一款使用jQuery Layui制作的表单提交验证码,数字和英文随机生成。

jQuery英文数字组合表单验证码特效 11
查看详情 jQuery英文数字组合表单验证码特效
PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号