簡介:這是php寫驗證碼類的詳細頁面,介紹了和php,有關的知識、技巧、經驗,和一些php源碼等。
class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=341730' scrolling='no'>
前一段時間我寫了個驗證碼函數, 今天做成了驗證碼類 有助於物件導向編程。
img.php
1 <?php
2 /**
3 * QQ:279861795
4 * Author: gwyy
5 * Date: 2011-7-01
6 *通用驗證碼類
7 *版本:V0.1
8 */
9
10 class ValidateCode {
11 private $charset="abcdefghizklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"; //隨機因子
12 private $code; //驗證碼文字
13 private $codelen=4; //驗證碼顯示幾個文字
14 private $width=130; //驗證碼寬度
15 private $height=50; //驗證碼高度
16 private $img; //驗證碼資源控制代碼
17 private $font; //指定的字型
18 private $fontsize=20; //指定的字型大小
19 private $fontcolor; //字型顏色 隨機
20
21 //構造類 編寫字型
22 public function __construct(){
23 $this->font=ROOT_PATH.'/font/elephant.ttf';
24 }
25 //建立4個隨機碼
26 private function createCode(){
27 $_leng=strlen($this->charset);
28 for($i=1;$i<=$this->codelen;$i++){
29 $this->code.=$this->charset[mt_rand(0,$_leng)];
30 }
31 return $this->code;
32 }
33
34 //建立背景
35 private function createBg(){
36 //建立畫布 給一個資源jubing
37 $this->img=imagecreatetruecolor($this->width,$this->height);
38 //背景顏色
39 $color=imagecolorallocate($this->img,mt_rand(157,255),mt_rand(157,255),mt_rand(157,255));
40 //畫出一個矩形
41 imagefilledrectangle($this->img,0,$this->height,$this->width,0,$color);
42 }
43
44 //建立字型
45 private function createFont(){
46 $_x=($this->width / $this->codelen); //字型長度
47 for ($i=0;$i<$this->codelen;$i++){
48 //文字顏色
49 $color=imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,156),mt_rand(0,156));
50 //資源控制代碼 字型大小 傾斜度 字型長度 字型高度 字型顏色 字型 具體文本
51 imagettftext($this->img,$this->fontsize,mt_rand(-30,30),$_x*$i+mt_rand(1,5),$this->height/1.4,$color,$this->font,$this->code[$i]);
52 }
53 }
54 //隨機線條
55 private function createLine(){
56 //隨機線條
57 for ($i=0;$i<6;$i++){
58 $color = imagecolorallocate($this->img,mt_rand(0,156),mt_rand(0,156),mt_rand(0,156));
59 imageline($this->img,mt_rand(0,$this->width),mt_rand(0,$this->height),mt_rand(0,$this->width),mt_rand(0,$this->height),$color);
60 }
61 //隨機雪花
62 for ($i=0;$i<45;$i++){
63 $color = imagecolorallocate($this->img,mt_rand(220,255),mt_rand(220,255),mt_rand(220,255));
64 imagestring($this->img,mt_rand(1,5),mt_rand(0,$this->width),mt_rand(0,$this->height),'*',$color);
65 }
66 }
67 //輸出背景
68 private function outPut(){
69 //產生標題
70 header('ContentType:img/png');
71 //輸出圖片
72 imagepng($this->img);
73 //銷毀結果集
74 imagedestroy($this->img);
75 }
76 //對外輸出
77 public function doimg(){
78 //載入背景
79 $this->createBg();
80 //負載檔案
81 $this->createCode();
82 //載入線條
83 $this->createLine();
84 //載入字型
85 $this->createFont();
86 //載入背景
87 $this->outPut();
88 }
89
90 //擷取驗證碼
91 public function getCode(){
92 return strtolower($this->code);
93 }
94
95 }
96
97 ?>
其他頁面調用方法
index.php
<?php
require 'img.php';
$img=new ValidateCode();
echo $img->doimg();
?>
過往雲煙 2011/07/29
愛J2EE關注Java邁克爾傑克遜視頻站JSON線上工具
http://biancheng.dnbcw.info/php/341730.html pageNo:6