基于php验证码函数的使用示例_PHP教程
function _code($_code_length = 4, $_width = 75, $_height = 25){
for($i=0;$i $_nmsg .= dechex(mt_rand(0,15));
}
$_SESSION["code"] = $_nmsg;
$_img = imagecreatetruecolor($_width, $_height);
$_white = imagecolorallocate($_img, 250, 250, 250);
imagefill($_img, 0, 0, $_white);
$_gray = imagecolorallocate($_img, 196, 196, 196);
imagerectangle($_img, 0, 0, $_width-1, $_height-1, $_gray);
for ($i=0; $i $_md_color = imagecolorallocate($_img, mt_rand(200,255), mt_rand(200,255), mt_rand(200,255));
imageline($_img, mt_rand(0,$_width), mt_rand(0, $_height),mt_rand(0,$_width), mt_rand(0, $_height), $_md_color);
}
for ($i=0; $i $_md_color = imagecolorallocate($_img, mt_rand(200,255), mt_rand(200,255), mt_rand(200,255));
imagestring($_img, 1, mt_rand(1,$_width-5), mt_rand(1, $_height-5), "*", $_md_color);
}
for ($i=0; $i $_md_color = imagecolorallocate($_img, mt_rand(0,102), mt_rand(0,102), mt_rand(0,102));
imagestring($_img, 5, $i * $_width/$_code_length+ mt_rand(1, 10), mt_rand(1, $_height/2), $_SESSION["code"][$i], $_md_color);
}
header("Content-Type:image/png");
imagepng($_img);
imagedestroy($_img);
}
推荐阅读
-
PHP文件生成的图片无法使用CDN缓存的解决方法,_PHP教程
-
Thinkphp的volist标签嵌套循环使用教程_PHP
-
PHP函数in_array()如何检查数组中的值_PHP教程
-
php 获取远程网页内容的函数_PHP教程
-
示例讲解PHP函数preg_grep()的使用
-
WordPress中创建用户角色的相关PHP函数使用详解,
-
PHP匹配颜色函数的使用技巧
-
php-Arrays函数-array_key_exists-检查给定的键名或索引是否存在于数组中_PHP教程
-
PHP中SESSION使用中的一点经验总结_PHP教程
-
Smarty使用自定义资源的方法,smarty自定义资源_PHP教程