php實現驗證碼看不清換一張的方法:首先開啟PHP程式碼檔案;然後新增js程式碼「function changing(){document.getElementById('checkpic').src="/images/...}」到頁面中即可。
推薦:《》
現在讓我們來看下 PHP 程式碼
程式碼如下:
<?php session_start(); function random($len) { $srcstr = "1a2s3d4f5g6hj8k9qwertyupzxcvbnm"; mt_srand(); $strs = ""; for ($i = 0; $i < $len; $i++) { $strs .= $srcstr[mt_rand(0, 30)]; } return $strs; } //隨機生成的字串 $str = random(4); //驗證碼圖片的寬度 $width = 50; //驗證碼圖片的高度 $height = 25; //宣告需要建立的圖層的圖片格式 @ header("Content-Type:image/png"); //建立一個圖層 $im = imagecreate($width, $height); //背景色 $back = imagecolorallocate($im, 0xFF, 0xFF, 0xFF); //模糊點顏色 $pix = imagecolorallocate($im, 187, 230, 247); //字型色 $font = imagecolorallocate($im, 41, 163, 238); //繪模糊作用的點 mt_srand(); for ($i = 0; $i < 1000; $i++) { imagesetpixel($im, mt_rand(0, $width), mt_rand(0, $height), $pix); } //輸出字元 imagestring($im, 5, 7, 5, $str, $font); //輸出矩形 imagerectangle($im, 0, 0, $width -1, $height -1, $font); //輸出圖片 imagepng($im); imagedestroy($im); $str = md5($str); //選擇 cookie //SetCookie("verification", $str, time() + 7200, "/"); //選擇 Session $_SESSION["verification"] = $str; ?>
接下來只要在頁面中呼叫就可以了:
程式碼如下:
<img id="checkpic" onclick="changing();" src='/images/checkcode.php' />
如果想實現 "看不清?換一張" 效果,新增如下 JS 到頁面中
程式碼如下:
function changing(){ document.getElementById('checkpic').src="/images/checkcode.php?"+Math.random(); }
以上就是php如何實現驗證碼看不清換一張的效果的詳細內容,更多請關注TW511.COM其它相關文章!