日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

PHP验证码生成

發布時間:2024/4/14 php 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 PHP验证码生成 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

<?php
//后臺生成驗證碼
function vcode($number=4,$size=20,$width=0,$height=0,$str="0123456789",$font=array('function/calibri.ttf')){
if($width==0)
{
$width=($number+1)*$size;
}
if($height==0)
{
$height=$size*2.5;
}
$im=imagecreatetruecolor($width,$height);
$randTintColor=imagecolorallocate($im,rand(160,255),rand(160,255),rand(160,255));
$randColor=imagecolorallocate($im,rand(0,80),rand(0,80),rand(0,80));
imagefilledrectangle($im, 0, 0, $width, $height, $randTintColor);
$vcode='';
$fontMaxIndex=count($font)-1;
for ($i=0; $i <$number ; $i++) {
$wx=$size*0.5+$size*$i;
$wy=rand($size*1.5,$size*2);
$strMaxIndex=strlen($str)-1;
$code=$str[rand(0,$strMaxIndex)];
$vcode.=$code;
$randColor1=imagecolorallocate($im,rand(0,120),rand(0,120),rand(0,120));
imagettftext($im, $size , rand(-10,10), $wx, $wy, $randColor1, $font[rand(0,$fontMaxIndex)], $code);
}
$pn=$size*5;
for ($i=0; $i < $pn; $i++) {
$randColor=imagecolorallocate($im,rand(0,80),rand(0,80),rand(0,80));
$wwx= rand(0,$width);
$wwy= rand(0,$height);
imagesetpixel($im, $wwx, $wwy, $randColor);
}
if(isset($_SESSION)){
session_start();
}
$_SESSION['vcode']=$vcode;
header("Content-type: image/png;charset=utf-8");
ob_clean();
imagepng($im);
imagedestroy($im);
}

?>

轉載于:https://www.cnblogs.com/xu--jun/p/6426672.html

總結

以上是生活随笔為你收集整理的PHP验证码生成的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。