VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php 验证码生成程序,可自动判断php gd库

  1. function ShowKey() 
  2. $key=strtolower(domake_password(4)); 
  3. $set=esetcookie("checkkey",$key); 
  4.  //是否支持gd库 
  5. if (function_exists("imagejpeg")) { 
  6.    header ("Content-type: image/jpeg"); 
  7.    $img=imagecreate(69,20); 
  8.    $black=imagecolorallocate($img,255,255,255); 
  9.    $gray=imagecolorallocate($img,102,102,102); 
  10.    imagefill($img,0,0,$gray); 
  11.    imagestring($img,3,14,3,$key,$black); 
  12.    imagejpeg($img); 
  13.    imagedestroy($img); 
  14. elseif (function_exists("imagegif")) { 
  15.    header ("Content-type: image/gif"); 
  16.    $img=imagecreate(69,20); 
  17.    $black=imagecolorallocate($img,255,255,255); 
  18.    $gray=imagecolorallocate($img,102,102,102); 
  19.    imagefill($img,0,0,$gray); 
  20.    imagestring($img,3,14,3,$key,$black); 
  21.    imagegif($img); 
  22.    imagedestroy($img); 
  23. elseif (function_exists("imagepng")) { 
  24.  header ("Content-type: image/png"); 
  25.    $img=imagecreate(69,20); 
  26.    $black=imagecolorallocate($img,255,255,255); 
  27.    $gray=imagecolorallocate($img,102,102,102); 
  28.    imagefill($img,0,0,$gray); 
  29.    imagestring($img,3,14,3,$key,$black); 
  30.    imagepng($img); 
  31.    imagedestroy($img); 
  32. elseif (function_exists("imagewbmp")) { 
  33.  header ("Content-type: image/vnd.wap.wbmp"); 
  34.    $img=imagecreate(69,20); 
  35.    $black=imagecolorallocate($img,255,255,255); 
  36.    $gray=imagecolorallocate($img,102,102,102); 
  37.    imagefill($img,0,0,$gray); 
  38.    imagestring($img,3,14,3,$key,$black); 
  39.    imagewbmp($img); 
  40.    imagedestroy($img); 
  41. else { 
  42.  $set=esetcookie("checkkey","ebak"); 
  43.  @include("class/functions.php"); 
  44.  echo ReadFiletext("images/ebak.jpg"); 
  45. }//开源代码phpfensi.com 
  46. ShowKey(); 
  47.  

原文链接:http://www.phpfensi.com/php/20140819/4497.html


相关教程