<img border="0" style="cursor:pointer;" onclick="this.src='captcha.php?'+new Date().getTime();" src="captcha.php">
这个可以用,点击图片刷新
这个可以用,点击图片刷新
2016-08-15
do{
$fontcontent = substr($data,rand(0,strlen($data)),1);
}while($fontcontent == '');
用这句话更好 substr有时会提取出来空字符,导致验证码只有三个或者更少(当然几率很小),但是3个会出现(我已经出现n多次了)
$fontcontent = substr($data,rand(0,strlen($data)),1);
}while($fontcontent == '');
用这句话更好 substr有时会提取出来空字符,导致验证码只有三个或者更少(当然几率很小),但是3个会出现(我已经出现n多次了)
2016-08-14