導航:首頁 > 編程語言 > php運算驗證碼類

php運算驗證碼類

發布時間:2025-04-06 07:56:08

phpcmsPHPCMS v9 自定義表單添加驗證碼驗證

要在PHPCMS v9系統中自定義表單添加驗證碼驗證,首先需要在頭部代碼中加入以下代碼:

pc_base::load_sys_class('form', '', 0);

這行代碼的作用是載入系統中的表單類庫。接下來,需要在表單生成代碼中加入驗證碼的相關代碼。具體實現步驟如下:

1. 在需要添加驗證碼的表單頁面中引入驗證碼生成類庫:

pc_base::load_sys_class('verify', '', 0);

2. 在表單生成代碼中,添加生成驗證碼圖片的代碼:

$verify = new Verify();
$verify->entry();

3. 在表單提交處理代碼中,增加驗證用戶輸入的驗證碼是否正確:

if(!preg_match('/^\d{4}$/', $_POST['verifycode'])){
showmsg('驗證碼錯誤!', '', -1);
}

4. 確保在表單中添加驗證碼輸入框和圖片顯示:

<img src="getCheckCodeUrl(); ?>" alt="驗證碼">

通過以上步驟,你就可以在PHPCMS v9的自定義表單中成功添加驗證碼驗證功能,從而提高表單的安全性。

Ⅱ PHP如何生成加減演算法方式的驗證碼

<?php
namespace mobile\components;
/**
* @author fenghuo
*
* 改造的加減法驗證類
* 使用示例 VerifyCode::get(1,2);
* 驗證示例 VerifyCode::check($code);
*/
class VerifyCode
{
/**
* php驗證碼
*/
public static function get($one,$two,$prefix = '', $font_size = 28)
{
//文件頭...
ob_get_clean();
header("Content-type: image/png;charset=utf-8;");
//創建真彩色白紙
$width = $font_size*5;
$height = $font_size+1;
$im = @imagecreatetruecolor($width, $height) or die("建立圖像失敗");
//獲取背景顏色
$background_color = imagecolorallocate($im, 255, 255, 255);
//填充背景顏色
imagefill($im, 0, 0, $background_color);
//獲取邊框顏色
$border_color = imagecolorallocate($im, 200, 200, 200);
//畫矩形,邊框顏色200,200,200
imagerectangle($im,0,0,$width - 1, $height - 1,$border_color);
//逐行炫耀背景,全屏用1或0
for($i = 2;$i < $height - 2;$i++) {
//獲取隨機淡色
$line_color = imagecolorallocate($im, rand(200,255), rand(200,255), rand(200,255));
//畫線
imageline($im, 2, $i, $width - 1, $i, $line_color);
}
//設置印上去的文字
$firstNum = $one;
$secondNum = $two;
$actionStr = $firstNum > $secondNum ? '-' : '+';
//獲取第1個隨機文字
$imstr[0]["s"] = $firstNum;
$imstr[0]["x"] = rand(2, 5);
$imstr[0]["y"] = rand(1, 4);
//獲取第2個隨機文字
$imstr[1]["s"] = $actionStr;
$imstr[1]["x"] = $imstr[0]["x"] + $font_size - 1 + rand(0, 1);
$imstr[1]["y"] = rand(1,5);
//獲取第3個隨機文字
$imstr[2]["s"] = $secondNum;
$imstr[2]["x"] = $imstr[1]["x"] + $font_size - 1 + rand(0, 1);
$imstr[2]["y"] = rand(1, 5);
//獲取第3個隨機文字
$imstr[3]["s"] = '=';
$imstr[3]["x"] = $imstr[2]["x"] + $font_size - 1 + rand(0, 1);
$imstr[3]["y"] = 3;
//獲取第3個隨機文字
$imstr[4]["s"] = '?';
$imstr[4]["x"] = $imstr[3]["x"] + $font_size - 1 + rand(0, 1);
$imstr[4]["y"] = 3;
//文字
$text = '';
//寫入隨機字串
for($i = 0; $i < 5; $i++) {
//獲取隨機較深顏色
$text_color = imagecolorallocate($im, rand(50, 180), rand(50, 180), rand(50, 180));
$text .= $imstr[$i]["s"];
//畫文字
imagechar($im, $font_size, $imstr[$i]["x"], $imstr[$i]["y"], $imstr[$i]["s"], $text_color);
}
session_start();
$_SESSION[$prefix.'verifycode'] = $firstNum > $secondNum ? ($firstNum - $secondNum) : ($firstNum + $secondNum);
//顯示圖片
ImagePng($im);
//銷毀圖片
ImageDestroy($im);
}
public static function check($code)
{
if(trim($_SESSION[$prefix.'verifycode']) == trim($code)) {
return true;
} else {
return false;
}
}

Ⅲ 如何用PHP生成驗證碼

PHP生成驗證碼的原理:使用PHP的GD庫,生成一張帶驗證碼的圖片,並將驗證碼保存在Session中。PHP生成驗證碼的大致流程有:

1、產生一張png的圖片;

2、為圖片設置背景色;

3、設置字體顏色和樣式;

4、產生4位數的隨機的驗證碼;

5、把產生的每個字元調整旋轉角度和位置畫到png圖片上;

6、加入噪點和干擾線防止注冊機器分析原圖片來惡意破解驗證碼;

7、輸出圖片;

8、釋放圖片所佔內存。

session_start();
getCode(4,60,20);

functiongetCode($num,$w,$h){
$code="";
for($i=0;$i<$num;$i++){
$code.=rand(0,9);
}
//4位驗證碼也可以用rand(1000,9999)直接生成
//將生成的驗證碼寫入session,備驗證時用
$_SESSION["helloweba_num"]=$code;
//創建圖片,定義顏色值
header("Content-type:image/PNG");
$im=imagecreate($w,$h);
$black=imagecolorallocate($im,0,0,0);
$gray=imagecolorallocate($im,200,200,200);
$bgcolor=imagecolorallocate($im,255,255,255);
//填充背景
imagefill($im,0,0,$gray);

//畫邊框
imagerectangle($im,0,0,$w-1,$h-1,$black);

//隨機繪制兩條虛線,起干擾作用
$style=array($black,$black,$black,$black,$black,
$gray,$gray,$gray,$gray,$gray
);
imagesetstyle($im,$style);
$y1=rand(0,$h);
$y2=rand(0,$h);
$y3=rand(0,$h);
$y4=rand(0,$h);
imageline($im,0,$y1,$w,$y3,IMG_COLOR_STYLED);
imageline($im,0,$y2,$w,$y4,IMG_COLOR_STYLED);

//在畫布上隨機生成大量黑點,起干擾作用;
for($i=0;$i<80;$i++){
imagesetpixel($im,rand(0,$w),rand(0,$h),$black);
}
//將數字隨機顯示在畫布上,字元的水平間距和位置都按一定波動范圍隨機生成
$strx=rand(3,8);
for($i=0;$i<$num;$i++){
$strpos=rand(1,6);
imagestring($im,5,$strx,$strpos,substr($code,$i,1),$black);
$strx+=rand(8,12);
}
imagepng($im);//輸出圖片
imagedestroy($im);//釋放圖片所佔內存
}

Ⅳ php怎麼寫簡訊介面

簡訊介面可以廣泛應用在網站會員手機驗證、訂單通知、物流提醒等觸發類簡訊應用。技術實現1、用戶填寫自己的手機號碼,點擊「獲取驗證碼」按鈕2、網站按規則生成簡訊驗證碼,並將用戶的手機號碼和驗證碼內容通過簡訊驗證介面發送到驗證碼簡訊平台。3、驗證碼簡訊平台對經過一系列的判斷並通過之後(賬戶余額、內容是否合規、手機號碼是否合規、手機號碼所屬的運營商),將信息提交到相應運營商的伺服器。4、運營商將簡訊內容下發到用戶的手機。

Ⅳ thinkphp 怎麼修改默認驗證碼

修改 ThinkPHP 默認驗證碼類的猛謹字體及大小
是否感覺ThinkPHP中的默認生成的驗猛笑證碼太小了?修改驗證碼的大小後,發現字體大小跟位置 沒變化,看上去感覺很不好,下面就來改改吧…
找到ThinkPHP框架目錄下的Extend/Library/ORG/Util/Image.class.php類文件打開,找到 buildImageVerify方法,大概在371行開始,用以下代碼替換掉以前的(改的東西並不多,只要 加上兩行代碼就可以了,但為了清楚那兩行代碼是加在哪貼出buildImageVerify的整個方法)

1 static function buildImageVerify($length=4, $mode=1, $type='png', $width=48, $height=22,$verifyName='verify') {
2 import('ORG.Util.String');
3 $randval = String::randString($length, $mode);
4 session($verifyName, md5($randval));
5 $width = ($length * 10 + 10) > $width ? $length * 10 + 10 : $width;
6 if ($type != 'gif' && function_exists('imagecreatetruecolor')) {
7 $im = imagecreatetruecolor($width, $height);
8 } else {
9 $im = imagecreate($width, $height);
10 }
11 $r = Array(225, 255, 255, 223);
12 $g = Array(225, 236, 237, 255);
13 $b = Array(225, 236, 166, 125);
14 $key = mt_rand(0, 3);
15
16 $backColor = imagecolorallocate($im, $r[$key], $g[$key], $b[$key]); //背景色(隨機)
17 $borderColor = imagecolorallocate($im, 100, 100, 100); //邊框色
18 imagefilledrectangle($im, 0, 0, $width - 1, $height - 1, $backColor);
19 imagerectangle($im, 0, 0, $width - 1, $height - 1, $borderColor);
20 $stringColor = imagecolorallocate($im, mt_rand(0, 200), mt_rand(0, 120), mt_rand(0, 120));
21 // 干擾枝知基
22 for ($i = 0; $i < 10; $i++) {
23 imagearc($im, mt_rand(-10, $width), mt_rand(-10, $height), mt_rand(30, 300), mt_rand(20, 200), 55, 44, $stringColor);
24 }
25 for ($i = 0; $i < 25; $i++) {
26 imagesetpixel($im, mt_rand(0, $width), mt_rand(0, $height), $stringColor);
27 }
28 $fontPath=THINK_PATH."/Common/ERASDEMI.TTF"; //字體文件路徑,可自行更改,我放在ThinkPHP目錄下的Common目錄裡面
29 for ($i = 0; $i < $length; $i++) {
30 //imagestring($im, 5, $i * 18 + 5, mt_rand(1, 8), $randval{$i}, $stringColor); //這是默認的
31 imagettftext($im, 20, mt_rand(-30,30) , $i * 16 + 5, $height/1.4, $stringColor, $fontPath,$randval{$i}); //這個是新的,用imagettftext函數
32 }
33 Image::output($im, $type);
34 }

閱讀全文

與php運算驗證碼類相關的資料

熱點內容
單片機io電壓 瀏覽:378
oracle動態編譯存儲過程 瀏覽:980
程序員穿衣服去上班 瀏覽:689
哪裡能寫小說app 瀏覽:55
phpini文件解析 瀏覽:977
怎麼關閉共享伺服器設置 瀏覽:648
html5app怎麼開發 瀏覽:892
量化編程怎麼做 瀏覽:126
下墜pdf版 瀏覽:431
英語字典app哪個好 瀏覽:208
中行app下載的文件在哪裡 瀏覽:203
命令字描述 瀏覽:530
安卓手機上怎麼找所有照片 瀏覽:505
成為程序員的bug 瀏覽:857
linux防火牆設置埠 瀏覽:453
阿里推推app在哪裡下載 瀏覽:21
南昌app開發哪個好 瀏覽:527
ftp伺服器默認什麼策略 瀏覽:281
為什麼安卓機用一兩年會變卡 瀏覽:462
51單片機adc模塊 瀏覽:487