国产女人18毛片水真多18精品, 一区二区三区中文字-亚洲精品女国产, 欧美熟妇老熟妇88888久久久久, 一级毛片免费观看亚洲欧美国产精品,大波霸美女视频,日韩欧美激情V影院,熟女人伦21p,亚洲精品女国产,国产 乱子伦 在线

php驗(yàn)證碼代碼怎么寫

時間:2025-08-30 13:44:41 php語言 我要投稿

php驗(yàn)證碼代碼怎么寫

  我們先來處理php程序文件的開始符和結(jié)束符,這個不太復(fù)雜,我們用兩個變量來表示它們:

  復(fù)制代碼 代碼如下:

  <?php

  /pic/p>

  header("Content-type:image/png");

  /pic/p>

  $im=@imagecreatetruecolor(50,20)ordie("建立圖像失敗");

  /pic/p>

  $background_color=imagecolorallocate($im,255,255,255);

  /pic/p>

  imagefill($im,0,0,$background_color);

  /pic/p>

  $border_color=imagecolorallocate($im,200,200,200);

  /pic/p>

  imagerectangle($im,0,0,49,19,$border_color);

  /pic/p>

  for($i=2;$i<18;$i++){

  /pic/p>

  $line_color=imagecolorallocate($im,rand(200,255),rand(200,255),rand(200,255));

  /pic/p>

  imageline($im,2,$i,47,$i,$line_color);

  }

  /pic/p>

  $font_size=12;

  /pic/p>

  $Str[0]="ABCDEFGHIJKLMNOPQRSTUVWXYZ";

  $Str[1]="abcdefghijklmnopqrstuvwxyz";

  $Str[2]="01234567891234567890123456";

  /pic/p>

  $imstr[0]["s"]=$Str[rand(0,2)][rand(0,25)];

  $imstr[0]["x"]=rand(2,5);

  $imstr[0]["y"]=rand(1,4);

  /pic/p>

  $imstr[1]["s"]=$Str[rand(0,2)][rand(0,25)];

  $imstr[1]["x"]=$imstr[0]["x"]+$font_size-1+rand(0,1);

  $imstr[1]["y"]=rand(1,3);

  /pic/p>

  $imstr[2]["s"]=$Str[rand(0,2)][rand(0,25)];

  $imstr[2]["x"]=$imstr[1]["x"]+$font_size-1+rand(0,1);

  $imstr[2]["y"]=rand(1,4);

  /pic/p>

  $imstr[3]["s"]=$Str[rand(0,2)][rand(0,25)];

  $imstr[3]["x"]=$imstr[2]["x"]+$font_size-1+rand(0,1);

  $imstr[3]["y"]=rand(1,3);

  /pic/p>

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

  /pic/p>

  $text_color=imagecolorallocate($im,rand(50,180),rand(50,180),rand(50,180));

  /pic/p>

  imagechar($im,$font_size,$imstr[$i]["x"],$imstr[$i]["y"],$imstr[$i]["s"],$text_color);

  }

  /pic/p>

  imagepng($im);

  /pic/p>

  imagedestroy($im);

  ?> </p

【php驗(yàn)證碼代碼怎么寫】相關(guān)文章:

php下載代碼怎么寫12-13

php生成動態(tài)圖片驗(yàn)證碼代碼08-11

php生成動態(tài)圖片驗(yàn)證碼的一段代碼02-18

php實(shí)現(xiàn)驗(yàn)證碼制作03-22

php如何實(shí)現(xiàn)驗(yàn)證碼03-15

如何在cmd下面寫php代碼11-04

PHP圖片文件怎么上傳實(shí)現(xiàn)代碼01-25

怎么讓PHP程序代碼占用資源最小12-11

php分頁類代碼08-05

  • 相關(guān)推薦