php 生成驗證碼

2021-06-12 11:27:13 字數 977 閱讀 8769

che.php

<?php

session_start();

$im = imagecreatetruecolor(100, 30);

//設定顏色

$bg = imagecolorallocate($im, 0, 0, 0); //背景色

$te = imagecolorallocate($im, 255, 255, 255); //字型顏色

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

//輸出影象

header("content-type:image/jpeg");

imagejpeg($im);

/*1、imagecreatetruecolor 新建乙個真彩色影象

imagecreatetruecolor ( int x_size, int y_size ) // x就是寬 ,y就是高

2、imagecolorallocate 為一幅影象分配顏色(調色盤)

imagecolorallocate ( resource image, int red, int green, int blue )

3、imagestring 繪圖函式

imagestring ( resource image, font, int x, int y, 內容 , 顏色 )

4 、rand 隨機函式

rand ( [int min, int max] )

5、dechex 十進位制轉換為十六進製制

dechex ( 十進位制數 ) 十六進製制 1 ~ f

*/?>

che.htm

sub.php

<?php

session_start();

if($_post[check])else

}?>

php生成驗證碼

header content type image gif 初始化 border 0 是否要邊框 1要 0不要 how 4 驗證碼位數 w how 15 寬度 h 20 高度 fontsize 5 字型大小 alpha abcdefghijkmnopqrstuvwxyz 驗證碼內容1 字母 numb...

php 生成驗證碼

驗證碼個數 num 4 驗證碼寬度 width 80 驗證碼高度 height 20 驗證碼 注意是字串 code 生成驗證碼 for i 0 i num i 驗證碼儲存到session中 session start session verifycode code 建立影象 image imagec...

PHP生成驗證碼

php生成驗證碼,其實就是在乙個上新增文字,跟打水印原理一樣。這是親測乙個比較簡單好用的類 驗證碼類 class validatecode 生成隨機碼 private function createcode 生成背景 private function createbg 生成文字 private fu...