91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

如何編寫PHP驗證碼函數代碼

發布時間:2021-10-09 09:54:37 來源:億速云 閱讀:100 作者:iii 欄目:開發技術

本篇內容介紹了“如何編寫PHP驗證碼函數代碼”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

效果圖:

如何編寫PHP驗證碼函數代碼

復制代碼 代碼如下:

<?php  
 /**
 * vCode(m,n,x,y) m個數字  顯示大小為n   邊寬x   邊高y
 * micxp
 *jb51.net
 */ 
session_start();   
vCode(4, 15); //4個數字,顯示大小為15 

function vCode($num = 4, $size = 20, $width = 0, $height = 0) {  
    !$width && $width = $num * $size * 4 / 5 + 5;  
    !$height && $height = $size + 10;   
    // 去掉了 0 1 O l 等 
    $str = "23456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVW";  
    $code = '';  
    for ($i = 0; $i < $num; $i++) {  
        $code .= $str[mt_rand(0, strlen($str)-1)];  
    }   
    // 畫圖像 
    $im = imagecreatetruecolor($width, $height);   
    // 定義要用到的顏色 
    $back_color = imagecolorallocate($im, 235, 236, 237);  
    $boer_color = imagecolorallocate($im, 118, 151, 199);  
    $text_color = imagecolorallocate($im, mt_rand(0, 200), mt_rand(0, 120), mt_rand(0, 120));   
    // 畫背景 
    imagefilledrectangle($im, 0, 0, $width, $height, $back_color);   
    // 畫邊框 
    imagerectangle($im, 0, 0, $width-1, $height-1, $boer_color);   
    // 畫干擾線 
    for($i = 0;$i < 5;$i++) {  
        $font_color = imagecolorallocate($im, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));  
        imagearc($im, mt_rand(- $width, $width), mt_rand(- $height, $height), mt_rand(30, $width * 2), mt_rand(20, $height * 2), mt_rand(0, 360), mt_rand(0, 360), $font_color);  
    }   
    // 畫干擾點 
    for($i = 0;$i < 50;$i++) {  
        $font_color = imagecolorallocate($im, mt_rand(0, 255), mt_rand(0, 255), mt_rand(0, 255));  
        imagesetpixel($im, mt_rand(0, $width), mt_rand(0, $height), $font_color);  
    }   
    // 畫驗證碼 
    @imagefttext($im, $size , 0, 5, $size + 3, $text_color, 'c:\\WINDOWS\\Fonts\\simsun.ttc', $code);  
    $_SESSION["VerifyCode"]=$code;   
    header("Cache-Control: max-age=1, s-maxage=1, no-cache, must-revalidate");  
    header("Content-type: image/png;charset=gb2312");  
    imagepng($im);  
    imagedestroy($im);  

?>

“如何編寫PHP驗證碼函數代碼”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

php
AI

抚顺县| 安丘市| 新泰市| 阿合奇县| 岑溪市| 富阳市| 孟州市| 敦煌市| 邯郸县| 东城区| 和静县| 黔西县| 舟曲县| 博乐市| 色达县| 浠水县| 芜湖县| 农安县| 云安县| 南皮县| 白河县| 乐清市| 大化| 洪江市| 沁源县| 来宾市| 顺义区| 崇明县| 孟津县| 溆浦县| 内黄县| 罗定市| 曲阜市| 垫江县| 潮州市| 罗田县| 抚远县| 农安县| 华池县| 石棉县| 南通市|