php驗證碼

來源:互聯網
上載者:User

標籤:for   color   art   type   font   har   star   背景   and   

php驗證碼執行個體

 

<?php

$w = 80; //設定圖片寬和高
$h = 26;
$str = Array(); //用來儲存隨機碼
$string = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";//隨機挑選其中4個字元,也可以選擇更多,注意迴圈的時候加上,寬度適當調整
$vcode=""; //???
for($i = 0;$i < 4;$i++){
$str[$i] = $string[rand(0,35)];
$vcode .= $str[$i];
}
session_start(); //啟用超全域變數session
$_SESSION["vcode"] = $vcode;
$im = imagecreatetruecolor($w,$h);
$white = imagecolorallocate($im,255,255,255); //第一次調用設定背景色
$black = imagecolorallocate($im,0,0,0); //邊框顏色
imagefilledrectangle($im,0,0,$w,$h,$white); //畫一矩形填充
imagerectangle($im,0,0,$w-1,$h-1,$black); //畫一矩形框
//產生雪花背景
for($i = 1;$i < 200;$i++){
$x = mt_rand(1,$w-9);
$y = mt_rand(1,$h-9);
$color = imagecolorallocate($im,mt_rand(200,255),mt_rand(200,255),mt_rand(200,255));
imagechar($im,1,$x,$y,"*",$color);
}
//將驗證碼寫入圖案
for($i = 0;$i < count($str);$i++){
$x = 13 + $i * ($w - 15)/4;
$y = mt_rand(3,$h / 3);
$color = imagecolorallocate($im,mt_rand(0,225),mt_rand(0,150),mt_rand(0,225));
imagechar($im,5,$x,$y,$str[$i],$color);
}
header("Content-type:image/jpeg"); //以jpeg格式輸出,注意上面不能輸出任何字元,否則出錯
imagejpeg($im);
imagedestroy($im);

?>

 

簡易版

<?php

header("Content-type:image/jpeg");
session_start();
header("Content-type:image/jpeg");

$random="";

for($a=0; $a<4; $a++){
$random.=rand(0,9);
}

$im=imagecreatetruecolor(100,50);
$bg=imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));
$co=imagecolorallocate($im,43,100,0);
imagestring($im,6,10,20,$random,$co);
imagejpeg($im);


?>

php驗證碼

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.