PHP 5から.2.6 PHP 5をアップグレードする.3.1、検証コードプログラムにエラーが発生しました.
ソースプログラムは次のとおりです.
注記@header("Content-Type:image/png");プログラムを個別に実行し、エラーを検出します.
Notice: Undefined variable: authnum in D:\WAMP\wwwroot\mei-de\admin\authnum.php on line 10
未定義変数authnumと間違えて報告し、以前はPHP 5を使用していた.2.6同じ手順でも間違いは報告されていません.おかしいですね.
プログラムの前にauthnum変数を定義したほうがいい、プログラムOK.
@header("Content-Type:image/png");
session_start();
$_SESSION['authnum'] = '';
$str = "0,1,2,3,4,5,6,7,8,9,a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z";
$list = explode(",", $str);
for($i=0; $i<4; $i++){
$randnum = rand(0, 62);
$authnum .= $list[$randnum];
}
$_SESSION['authnum'] = strtolower($authnum);
$im = @imagecreate(40, 20) or die("Cant's initialize new GD image stream!");
$text_color = imagecolorallocate($im, 255, 255, 255); //
$background_color01 = imagecolorallocate($im, 255, 0, 0); // 1
$background_color02 = imagecolorallocatealpha($im, 255, 255, 255, 127); // 2
$noise_color = imagecolorallocate($im, 200, 200, 200); //
imagefill($im, 0, 0, $background_color02); //
imagestring($im, 5, 2, 2, $authnum, $text_color);
/*for($i=0; $i<400; $i++){ //
imagesetpixel($im, rand()%90 , rand()%30 , $noise_color);
}*/
imagepng($im);
imagedestroy($im);
注記@header("Content-Type:image/png");プログラムを個別に実行し、エラーを検出します.
Notice: Undefined variable: authnum in D:\WAMP\wwwroot\mei-de\admin\authnum.php on line 10
未定義変数authnumと間違えて報告し、以前はPHP 5を使用していた.2.6同じ手順でも間違いは報告されていません.おかしいですね.
プログラムの前にauthnum変数を定義したほうがいい、プログラムOK.