次のコードはすべてデバッグに合格しました。 authpage.phpを実行します。
/*
* ファイル名: authpage.php
*/
srand((double)microtime()*1000000);
//ユーザー入力が検証コードと一致するかどうかを検証します
if(isset($ _POST[' authinput']))
{
if(strcmp($_POST['authnum'],$_POST['authinput'])==0)
echo "検証成功!";
else
echo "検証に失敗しました!";
}
//新しい 4 桁の整数の検証コードを生成します
while(($authnum=rand()%10000)<1000);
?>
-------------------------------- -------- -------------------------------------- -------- -----------------------
/*
* ファイル名: authimg.php
*/
/ /検証コード生成 image
Header(" Content-type: image/PNG");
srand((double)microtime()*1000000);
$im = imagecreate(58,28);
$black = ImageColorAllocate($ im, 0,0,0);
$white = ImageColorAllocate($im, 255,255,255);
$gray = ImageColorAllocate($im, 200,200,200);
imagefill($im,68,30,$gray);
// 4 桁の整数の検証コードを画像に描画します
imagestring($im, 5, 10, 8, $HTTP_GET_VARS['authnum'], $white);
for($i=0;$i{
imagesetpixel ($im, rand()%70 , rand()%30 , $gray);
}
ImagePNG($im);
ImageDestroy($im);
http://www.bkjia.com/PHPjc/629496.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/629496.html技術記事次のコードはすべてデバッグに合格しました。 authpage.phpを実行します。 ? /* * ファイル名: authpage.php */ srand((double)microtime()*1000000) // ユーザー入力が検証コードと一致するかどうかを検証します if(iss...
)