盼什么没什么,怕什么来什么。那些忙于批评别人的人,都忘了检讨自己。生活就是这样,当你想昂着头走路时,你就得随时准备在地上趴着。
本文实例讲述了PHP生成可点击刷新的验证码。分享给大家供大家参考,具体如下:
html文件:
<html> <head> <title>验证码</title> </head> <script type="text/javascript"> function yanzheng(){ var im=document.getElementsByTagName("img"); im[0].src="gd.php?temp="+(new Date().getTime().toString(36)); } </script> <body> <img src="gd.php"/><a rel="nofollow noopener noreferrer" href="#" onclick="yanzheng()">换一张</a> </body> </html>
验证码文件gd.php:
<?php $im=imagecreate(50,20); $b=imagecolorallocate($im,0,0,0); $w=imagecolorallocate($im,255,255,255); $mask="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; $text=""; for($i=1;$i<=4;$i++){ $index=rand(0,61); $text.=$mask{$index}; } imagestring($im,3,rand(10,20),rand(0,10),$text,$w); header("Content-type:image/jpeg"); imagejpeg($im); ?>
希望本文所述对大家PHP程序设计有所帮助。
本文PHP生成可点击刷新的验证码简单示例到此结束。漫漫长路,荆棘丛生,待我用双手踏平。小编再次感谢大家对我们的支持!