溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么解決php驗證碼不變的問題

發(fā)布時間:2021-10-25 09:32:45 來源:億速云 閱讀:129 作者:iii 欄目:編程語言

這篇文章主要介紹“怎么解決php驗證碼不變的問題”,在日常操作中,相信很多人在怎么解決php驗證碼不變的問題問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么解決php驗證碼不變的問題”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

php驗證碼不變的解決辦法:1、使用“javascript:ckimg();”方法實現更換一張驗證碼;2、通過“οnclick="this.src='...”方法實現點擊換圖片即可。

怎么解決php驗證碼不變的問題

本文操作環(huán)境:Windows7系統(tǒng)、PHP7.1版、DELL G3電腦

php 驗證碼不變怎么辦?

php驗證碼無刷新改變(更換)

test.php

<html>
    <head>
        <script>
            function ckimg(){
              document.getElementById('img').src="validateCode2.php?"+new Date().getTime();
            }
        </script>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title></title>
    </head>
    <body>
        <!--第一種方法-->
        <a href="javascript:ckimg();" title="更換一張驗證碼圖片"><img src="validateCode2.php" id="img" alt="看不清,請換一張" /></a> <a href="javascript:ckimg();" title="更換一張驗證碼圖片">看不清,請換一張</a>
        <!--第二種方法-->
        <img src="validateCode2.php" alt="看不清,點擊換圖片" id="img" οnclick="this.src='validateCode2.php?'+new Date().getTime();" style='cursor:pointer;'>
    </body>
</html>

生產驗證碼的類,包含了一些驗證碼生成的參數,如:大小,顏色,顯示驗證碼的符號類型

validateCode2.php

<?php
session_start();
class Authnum {
//圖片對象、寬度、高度、驗證碼長度
private $im;
private $im_width;
private $im_height;
private $len;
//隨機字符串、y軸坐標值、隨機顏色
private $randnum;
private $y;
private $randcolor;
//背景色的紅綠藍,默認是淺灰色
public $red=238;
public $green=238;
public $blue=238;
/**
* 可選設置:驗證碼類型、干擾點、干擾線、Y軸隨機
* 設為 false 表示不啟用
**/
//默認是大小寫數字混合型,1 2 3 分別表示 小寫、大寫、數字型
public $ext_num_type='';
public $ext_pixel = false; //干擾點
public $ext_line = false; //干擾線
public $ext_rand_y= true; //Y軸隨機
function __construct ($len=4,$im_width='',$im_height=25) {
// 驗證碼長度、圖片寬度、高度是實例化類時必需的數據
$this->len = $len; $im_width = $len * 15;
$this->im_width = $im_width;
$this->im_height= $im_height;
$this->im = imagecreate($im_width,$im_height);
}
// 設置圖片背景顏色,默認是淺灰色背景
function set_bgcolor () {
imagecolorallocate($this->im,$this->red,$this->green,$this->blue);
}
// 獲得任意位數的隨機碼
function get_randnum () {
$an1 = 'abcdefghijklmnopqrstuvwxyz';
$an2 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$an3 = '0123456789';
if ($this->ext_num_type == '') $str = $an1.$an2.$an3;
if ($this->ext_num_type == 1) $str = $an1;
if ($this->ext_num_type == 2) $str = $an2;
if ($this->ext_num_type == 3) $str = $an3;
for ($i = 0; $i < $this->len; $i++) {
    $start = rand(1,strlen($str) - 1);
    $randnum .= substr($str,$start,1);
}
$this->randnum = $randnum;
$_SESSION[an] = $this->randnum;
}
// 獲得驗證碼圖片Y軸
function get_y () {
if ($this->ext_rand_y) $this->y = rand(5, $this->im_height/5);
else $this->y = $this->im_height / 4 ;
}
// 獲得隨機色
function get_randcolor () {
$this->randcolor = imagecolorallocate($this->im,rand(0,100),rand(0,150),rand(0,200));
}
// 添加干擾點
function set_ext_pixel () {
if ($this->ext_pixel) {
for($i = 0; $i < 100; $i++){
$this->get_randcolor();
imagesetpixel($this->im, rand()%100, rand()%100, $this->randcolor);
}
}
}
// 添加干擾線
function set_ext_line () {
if ($this->ext_line) {
for($j = 0; $j < 2; $j++){
$rand_x = rand(2, $this->im_width);
$rand_y = rand(2, $this->im_height);
$rand_x2 = rand(2, $this->im_width);
$rand_y2 = rand(2, $this->im_height);
$this->get_randcolor();
imageline($this->im, $rand_x, $rand_y, $rand_x2, $rand_y2, $this->randcolor);
}
}
}
/**創(chuàng)建驗證碼圖像:
* 建立畫布(__construct函數)
* 設置畫布背景($this->set_bgcolor();)
* 獲取隨機字符串($this->get_randnum ();)
* 文字寫到圖片上(imagestring函數)
* 添加干擾點/線($this->set_ext_line(); $this->set_ext_pixel();)
* 輸出圖片
**/
function create () {
$this->set_bgcolor();
$this->get_randnum ();
for($i = 0; $i < $this->len; $i++){
$font = rand(4,6);
$x = $i/$this->len * $this->im_width + rand(1, $this->len);
$this->get_y();
$this->get_randcolor();
imagestring($this->im, $font, $x, $this->y, substr($this->randnum, $i ,1), $this->randcolor);
}
$this->set_ext_line();
$this->set_ext_pixel();
header("content-type:image/png");
imagepng($this->im);
imagedestroy($this->im); //釋放圖像資源
}
}//end class
/**使用驗證碼類的方法:
* $an = new Authnum(驗證碼長度,圖片寬度,圖片高度);
* 實例化時不帶參數則默認是四位的60*25尺寸的常規(guī)驗證碼圖片
* 表單頁面檢測驗證碼的方法,對比 $_SESSION[an] 是否等于 $_POST[驗證碼文本框ID]
* 可選配置:
* 1.驗證碼類型:$an->ext_num_type=1; 值為1是小寫類型,2是大寫類型,3是數字類型
* 2.干擾點:$an->ext_pixel = false; 值為false表示不添加干擾點
* 3.干擾線:$an->ext_line = false; 值為false表示不添加干擾線
* 4.Y軸隨機:$an->ext_rand_y = false; 值為false表示不支持圖片Y軸隨機
* 5.圖片背景:改變 $red $green $blue 三個成員變量的值即可
**/
$an = new Authnum();
$an->ext_num_type='';
$an->ext_pixel = true; //干擾點
$an->ext_line = false; //干擾線
$an->ext_rand_y= true; //Y軸隨機
$an->green = 238;
$an->create();
?>

到此,關于“怎么解決php驗證碼不變的問題”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI