程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 編碼-php 驗證碼無法正常顯示的問題

編碼-php 驗證碼無法正常顯示的問題

編輯:編程綜合問答
php 驗證碼無法正常顯示的問題

代碼如下:

 <?php
session_start();
header("content-type:image/png");
$image_width=70;
$image_height=18;
srand(microtime()*100000);
for($i=0;$i<4;$i++){
    $new_number=dechex(rand(0,15));
}
$_SESSION[check_checks]=$new_number;
$num_image=imagecreate($image_width,$image_height);
imagecolorallocate($num_image,255,255,255);
for($i=0;$i<strlen($_SESSION[check_checks]);$i++){
    $font=mt_rand(3,5);
    $x=mt_rand(1,8)+$image_width*$i/4;
    $y=mt_rand(1,$image_height/4);
    $color=imagecolorallocate($num_image,mt_rand(0,100),mt_rand(0,150),mt_rand(0,200));
    imagestring($num_image,$font,$x,$y,$_SESSION[check_checks][$i],$color);
}
imagepng($num_image);
imagedestroy($num_image);
?>

gd庫已開,utf8無bom編碼,就是顯示不出來

最佳回答:


undefined constant check_checks - assumed 'check_checks'
$_SESSION[check_checks]改為$_SESSION['check_checks'];

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved