//干扰线
for($j=0;$j<3;$j++){
$x = mt_rand(0, $width);
$y = mt_rand(0, $height);
$xx = mt_rand(0, $height);
$yy = mt_rand(0, $height);
imageline($image, $x, $y, $xx, $yy, $red);
}
for($j=0;$j<3;$j++){
$x = mt_rand(0, $width);
$y = mt_rand(0, $height);
$xx = mt_rand(0, $height);
$yy = mt_rand(0, $height);
imageline($image, $x, $y, $xx, $yy, $red);
}
2017-05-05
很多老的 libc 的随机数发生器具有一些不确定和未知的特性而且很慢。PHP 的 rand() 函数默认使用 libc 随机数发生器。mt_rand() 函数是非正式用来替换它的。该函数用了 » Mersenne Twister 中已知的特性作为随机数发生器,它可以产生随机数值的平均速度比 libc 提供的 rand() 快四倍。 所以用mt_rand() 能用mt的函数,就用mt的
2017-05-05
<p>验证码图片:
<img id = "captcha_img" border = "1" src="./captcha.php?r=<?php echo rand();?>"width:100px,height:100px" />
<a href="javascript:void(0)" onclick="document.getElementById('captcha_img').src='./captcha.php?r='+Math.random()">换一个</a>
</p>
<img id = "captcha_img" border = "1" src="./captcha.php?r=<?php echo rand();?>"width:100px,height:100px" />
<a href="javascript:void(0)" onclick="document.getElementById('captcha_img').src='./captcha.php?r='+Math.random()">换一个</a>
</p>
2017-04-25
1.创建黑色画布 $image = imagecreate(100, 30);
2.为画布定义(背景)颜色 $bgcolor = imagecolorallocate($image, 255, 255, 255);
3.填充颜色 imagefill($image, 0, 0, $bgcolor);
4.向浏览器输出图片头信息 header('content-type:image/png');
5.输出图片到浏览器 imagepng($image);
6.销毁图片 imagedestroy($image);
2.为画布定义(背景)颜色 $bgcolor = imagecolorallocate($image, 255, 255, 255);
3.填充颜色 imagefill($image, 0, 0, $bgcolor);
4.向浏览器输出图片头信息 header('content-type:image/png');
5.输出图片到浏览器 imagepng($image);
6.销毁图片 imagedestroy($image);
2017-04-25