php驗證碼的執行個體和思路分析

來源:互聯網
上載者:User
本文主要介紹了php驗證碼的製作思路和實現方法,我們不能盲目的去實現php產生驗證碼,更應該瞭解php驗證碼的基本原理,真正的掌握php驗證碼的實現方法,需要的朋友可以參考下。希望對大家有所協助。

一、製作思路

由於註冊的時候常常會用到註冊碼來防止機器惡意註冊,這裡我發表一個產生png圖片驗證碼的基本映像,簡單的思路分析:

1、產生一張png的圖片
2、為圖片設定背景色
3、設定字型顏色和樣式
4、產生4位元的隨機的驗證碼
5、把產生的每個字元調整旋轉角度和位置畫到png圖片上
6、加入噪點和幹擾線防止註冊機器分析原圖片來惡意註冊
7、輸出圖片
8、釋放圖片所佔記憶體

二、實現方法

authcode.php檔案


<?php    session_start ();    header ( 'Content-type: image/png' );    //建立圖片    $im = imagecreate($x=130,$y=45 );    $bg = imagecolorallocate($im,rand(50,200),rand(0,155),rand(0,155)); //第一次對 imagecolorallocate() 的調用會給基於調色盤的映像填充背景色    $fontColor = imageColorAllocate ( $im, 255, 255, 255 );  //字型顏色    $fontstyle = 'rock.ttf';          //字型樣式,這個可以從c:\windows\Fonts\檔案夾下找到,我把它放到和authcode.php檔案同一個目錄,這裡可以替換其他的字型樣式    //產生隨機字元    for($i = 0; $i < 4; $i ++) {        $randAsciiNumArray     = array (rand(48,57),rand(65,90));        $randAsciiNum         = $randAsciiNumArray [rand ( 0, 1 )];        $randStr             = chr ( $randAsciiNum );        imagettftext($im,30,rand(0,20)-rand(0,25),5+$i*30,rand(30,35),$fontColor,$fontstyle,$randStr);        $authcode            .= $randStr;     }    $_SESSION['authcode']    = $randFourStr;//使用者和使用者輸入的驗證碼做比較    //幹擾線    for ($i=0;$i<8;$i++){        $lineColor    = imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));        imageline ($im,rand(0,$x),0,rand(0,$x),$y,$lineColor);    }    //幹擾點    for ($i=0;$i<250;$i++){        imagesetpixel($im,rand(0,$x),rand(0,$y),$fontColor);    }    imagepng($im);    imagedestroy($im);        ?>


相關推薦:

怎麼用php實現簡訊驗證碼發送

Laravel的驗證碼庫

如何在ecshop中解決驗證碼圖片不出問題

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.