当前位置: 移动技术网 > IT编程>开发语言>PHP > 產生圖片隨機字串

產生圖片隨機字串

2019年06月08日  | 移动技术网IT编程  | 我要评论
<?php  
$base = 'abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz0123456789';  
$words = 5;  
$rand_top = strlen($base) - 1;  
$string = '';  
header("content-type: image/png");  
$im = imagecreate($words*16, $words*5);  
$black = imagecolorallocate($im, 90, 60, 120);  
$white = imagecolorallocate($im, 255, 255, 255);  
for($i=0;$i<$words;$i++){  
  $idx = mt_rand(0, $rand_top);  
  imagestring($im, 3, $i*15+2, mt_rand(0, $words*2), $base[$idx], $white);  
}  
imagepng($im);  
imagedestroy($im);  
?>

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网