夜间福利网站,免费动漫av,一级做a爰片久久毛片免费陪,夜夜骑首页,黄色毛片视频,插插插操操操,综合av色

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

時(shí)間:2025-08-30 13:44:41 php語(yǔ)言 我要投稿

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

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

  復(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)證碼代碼怎么寫(xiě)】相關(guān)文章:

php下載代碼怎么寫(xiě)12-13

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

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

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

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

如何在cmd下面寫(xiě)php代碼11-04

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

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

php分頁(yè)類代碼08-05

  • 相關(guān)推薦