PHP驗證碼類

2021-06-17 17:53:44 字數 911 閱讀 5069

php驗證碼類

如果不適用指定的字型,那麼就用imagestring()函式,如果需要遇到指定的字型,就要用到imagettftext()函式。字型的位置在c盤下windows/fonts.

verificationcode.class.php

<?php 

class verificationcode

//生成驗證碼

private function createcode()

} //生成背景

private function createbg()

//生成文字

private function createfont()

} //生成線條、雪花

private function createdisturb()

for ($i = 0; $i < 100; $i++)

} //輸出

private function output()

public function showcode()

//獲取驗證碼

public function getcode()

}?>

code.php

<?php 

session_start();

require_once 'verificationcode.class.php';

$code=new verificationcode();

$_session['code']=$code->getcode();

$code->showcode();

?>

驗證碼:

PHP 驗證碼類

呼叫方法 captcha new captcha captcha createcaptcha created by phpstorm.user ming date 2018 7 15 time 下午4 34 class captcha createcode return string 生成的驗證碼字...

php驗證碼類

1 驗證碼類檔案 createimg.class.php class validationcode function outimg private function outfileheader private function createcode private function createim...

php 驗證碼生成類

created on 2013 7 19 驗證碼類 通過類的物件可以動態獲取驗證碼和驗證正碼字串。class validationcode 顯示並向瀏覽器輸出影象 function showimage function getcheckcode 建立影象 private function getcr...