PHP 小規模プロジェクト: 完全な検証コードの例

WBOY
リリース: 2016-06-20 12:31:43
オリジナル
814 人が閲覧しました

Weibo アカウント、他のフォーラム アカウントなどにログインする場合は、認証コードを入力する必要があることがわかります。ログインには認証コードが使用されるため、セキュリティが向上します。これは適切な PHP プロジェクト コードです。検証コードの実装に誤りがある場合は指摘してください。

/**

*確認テキストを追加

* @param int $type

* @param int $length*/function buildRandomString($type=1,$ length=4){

$row='';

if($type==1){

$row=join('',range(0, 9));

}else if($type==2){

$row=join('', array_merge(range('a','z'),range( 'A', 'Z')));

}else if($type==3){

$row=join('', array_merge(range('a', 'z'),range('A', 'Z'),range(0, 9)));

};

$row=str_shuffle($row);

$row=substr($row,0,$length);

return $row;

}/**

* サムネイルを生成

* @param int $type // 数字または英語が含まれます

* @param int $length 文字数

* @ param int $pixel 干渉ドットの密度

* @param int $dst_h 干渉線の密度

* @param string //$_SESSION 内の検証コードの名前

*/

function verifyImage($type=1,$length=4,$pixel=0,$line=0,$sess_name = "verify"){

//session_start();

//キャンバスを作成

$width = 100;

$height = 40;

$image = imagecreatetruecolor ($width, $height);

$white = imagecolorallocate ($image, 255, 255, 255);

$black = imagecolorallocate ($image, 0, 0, 0);

//パディングを使用長方形の塗りつぶされたキャンバス

imagefilledrectangle ($image, 1, 1, $width - 2, $height - 2, $white);

$chars = buildRandomString ($type, $length);

$_SESSION [$sess_name] = $chars;

//$fontfiles = array ("MSYH.TTF", "MSYHBD.TTF", "SIMLI.TTF", "SIMSUN. TTC", "SIMYOU.TTF", "STZHONGS.TTF" );

$fontfiles = array ("SIMKAI.TTF" );

//フォントファイルが比較的大きいため、フォントを予約するだけです。フォントはコンピューターのフォント フォルダーにあります。実行してフォントを入力するだけで、($i = 0; $) に対応するフォントが表示されます。 i

$size = mt_rand (14, 18);

$angle = mt_rand (- 15, 15);

$x = 5 + $i * $size;

$y = mt_rand (20, 26);

$fontfile = "../fonts/" . 0、カウント ( $fontfiles ) - 1 )];

$color = imagecolorallocate ( $image, mt_rand ( 50, 90 ), mt_rand ( 80, 200 ), mt_rand ( 90, 180 ) );

$text = substr ( $chars, $i、 1 );

imagettftext ( $image, $size, $angle, $x, $y, $color, $fontfile, $text );

}

if ($pixel) {

for($i = 0; $i

imagesetpixel ( $image, mt_rand ( 0, $width - 1 ) , mt_rand ( 0, $height - 1 ), $black );

}

}

if ($line) {

for($ i = 1; $i < $line; $i ++) {

$color = imagecolorallocate ( $image, mt_rand ( 50, 90 ), mt_rand ( 90, 180) ) );

imageline ( $image, mt_rand ( 0, $width - 1 ), mt_rand ( 0, $height - 1 ), mt_rand ( 0, $width - 1 ), mt_rand ( 0, $height - 1 ), $color );

}

}

header ( "content-type:image/gif" );

imagegif ( $ image );

imagedestroy ( $image );

}

主要要点:1、如果前没有申明session_start();则必要申明;2、字体可在cmf 入力フォントは、独自のフォント ファイルにダウンロードされます。3、$_SESSION [$sess_name] は、$_POST 経由でユーザー入力の認証コードを取得して比較を実行できます。


ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート