最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

PHP編寫(xiě)登錄驗(yàn)證碼功能 附調(diào)用方法

 更新時(shí)間:2016年05月19日 15:20:50   投稿:lijiao  
這篇文章主要介紹了PHP編寫(xiě)登錄驗(yàn)證碼功能,文末附調(diào)用方法,并包含隨機(jī)字符函數(shù),和GD庫(kù)畫(huà)圖函數(shù),感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了一個(gè)PHP寫(xiě)的登錄驗(yàn)證碼功能,供大家參考,具體內(nèi)容如下

 ShowKey.php

<?php
session_start();
//設(shè)置COOKIE或Session
function esetcookie($name,$str,$life=0){
//本函數(shù)將字符串 str 全部變小寫(xiě)字符串使驗(yàn)證碼輸入不區(qū)分大小寫(xiě)----在提交表單進(jìn)行session比較同樣需要次函數(shù)轉(zhuǎn)化
 $_SESSION[$name]=strtolower($str);
}

//獲取隨機(jī)字符 此函數(shù)區(qū)分字符大小寫(xiě) 如果不區(qū)分大小寫(xiě)可加入函數(shù)strtolower
function domake_password($len) 
{ 
  $chars = array( 
    /*"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", 
    "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", 
    "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", 
    "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", 
    "S", "T", "U", "V", "W", "X", "Y", "Z",*/ "0", "1", "2", 
    "3", "4", "5", "6", "7", "8", "9" 
  ); 
  $charsLen = count($chars) - 1; 
  shuffle($chars);// 將數(shù)組打亂
  $output = ""; 
  for ($i=0; $i<$len; $i++) 
  { 
    $output .= $chars[mt_rand(0, $charsLen)]; //獲得一個(gè)數(shù)組元素
  } 
  return $output;
} 

//顯示驗(yàn)證碼
function ShowKey(){
 $key=domake_password(4);//獲取隨機(jī)值
 $set=esetcookie("checkkey",$key);//將隨機(jī)值寫(xiě)入cookie或session
 //是否支持gd庫(kù)
 if(function_exists("imagejpeg")) 
 {
  header ("Content-type: image/jpeg");
  $img=imagecreate(47,20);
  $blue=imagecolorallocate($img,102,102,102);
  $white=ImageColorAllocate($img,255,255,255);
  $black=ImageColorAllocate($img,71,71,71);
  imagefill($img,0,0,$blue);
  imagestring($img,5,6,3,$key,$white);
  for($i=0;$i<90;$i++) //加入干擾象素
  {
   imagesetpixel($img,rand()%70,rand()%30,$black);
  }
  imagejpeg($img);
  imagedestroy($img);
 }
 elseif (function_exists("imagepng"))
 {
  header ("Content-type: image/png");
  $img=imagecreate(47,20);
  $blue=imagecolorallocate($img,102,102,102);
  $white=ImageColorAllocate($img,255,255,255);
  $black=ImageColorAllocate($img,71,71,71);
  imagefill($img,0,0,$blue);
  imagestring($img,5,6,3,$key,$white);
  for($i=0;$i<90;$i++) //加入干擾象素
  {
   imagesetpixel($img,rand()%70,rand()%30,$black);
  }
  imagepng($img);
  imagedestroy($img);
 }
 elseif (function_exists("imagegif")) 
 {
  header("Content-type: image/gif");
  $img=imagecreate(47,20);
  $blue=imagecolorallocate($img,102,102,102);
  $white=ImageColorAllocate($img,255,255,255);
  $black=ImageColorAllocate($img,71,71,71);
  imagefill($img,0,0,$blue);
  imagestring($img,5,6,3,$key,$white);
  for($i=0;$i<90;$i++) //加入干擾象素
  {
   imagesetpixel($img,rand()%70,rand()%30,$black);
  }
  imagegif($img);
  imagedestroy($img);
 }
 elseif (function_exists("imagewbmp")) 
 {
  header ("Content-type: image/vnd.wap.wbmp");
  $img=imagecreate(47,20);
  $blue=imagecolorallocate($img,102,102,102);
  $white=ImageColorAllocate($img,255,255,255);
  $black=ImageColorAllocate($img,71,71,71);
  imagefill($img,0,0,$blue);
  imagestring($img,5,6,3,$key,$white);
  for($i=0;$i<90;$i++) //加入干擾象素
  {
   imagesetpixel($img,rand()%70,rand()%30,$black);
  }
  imagewbmp($img);
  imagedestroy($img);
 }
 else
 {
  //不支持驗(yàn)證碼
  header("content-type:image/jpeg\r\n");
  header("Pragma:no-cache\r\n");
  header("Cache-Control:no-cache\r\n");
  header("Expires:0\r\n");
  $fp = fopen("data/vdcode.jpg","r"); 
 }
}
ShowKey();
?>

調(diào)用方法:

復(fù)制代碼 代碼如下:
<img src="ShowKey.php" name="KeyImg" id="KeyImg"  onClick="KeyImg.src='ShowKey.php?'+Math.random()"> 

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家學(xué)習(xí)php程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論

油尖旺区| 衡阳市| 石棉县| 那坡县| 白水县| 高淳县| 大悟县| 宜良县| 浏阳市| 平邑县| 云南省| 陆河县| 宜君县| 土默特右旗| 北辰区| 通江县| 华宁县| 阳信县| 东宁县| 庆阳市| 信丰县| 增城市| 封开县| 岳池县| 鸡东县| 吴旗县| 丰城市| 昭通市| 阿拉尔市| 玉田县| 长岭县| 瑞丽市| 密云县| 河南省| 萝北县| 云阳县| 泸定县| 曲靖市| 瓦房店市| 佛坪县| 千阳县|