您好,登录后才能下订单哦!
1,代码如下:
<?php
function fillRandomString(){
//生成验证码
$char = array_merge(range(0, 9),range("a", "z"),range("A", "Z"));
//讲字符串$char打乱
$luan = str_shuffle(implode("", $char));
//从字符串中随机取四位
return substr($luan, 0,4 );
}
//创建画布
header('content-type:p_w_picpath/png');
$height = 20;
$width = 80;
$p_w_picpath = p_w_picpathcreate($width, $height);
$black = p_w_picpathcolorallocate($p_w_picpath, 0, 0, 0);
$white = p_w_picpathcolorallocate($p_w_picpath, 255, 255, 255);
//画图片矩形
p_w_picpathfilledrectangle($p_w_picpath, 1, 1, $width-2, $height-2, $white);
//填充字符串
p_w_picpathstring($p_w_picpath, 20, 20, 4, fillRandomString(), $black);
//输出图片
p_w_picpathpng($p_w_picpath);
//销毁图片
p_w_picpathdestroy($p_w_picpath);
但是在浏览器上输出显示不了,原因是在向浏览器输出之前没有清理缓存
在header()之前加入代码 ob_clean();即可
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。