91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何解決php驗證碼后臺不能生成的問題

發布時間:2021-11-19 09:36:46 來源:億速云 閱讀:156 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關如何解決php驗證碼后臺不能生成的問題,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

php驗證碼后臺不能生成的解決辦法:1、添加“header('Content-type: image/png')”語句;2、通過“ob_clean();”清除輸出緩存即可。

本文操作環境:windows7系統、PHP7.1版、DELL G3電腦

PHP驗證碼不能生成圖片,原因解決:

生成圖片時,header('Content-type: image/png');前面不能有輸出!!!

或者,前面加:ob_clean(); 即使用輸出也可以通過這句來清除輸出緩存!很重要!!!

當然,首先要打開gd2庫,可通過phpinfo查看。清除了bom,代碼也是頂行開始寫的,因此問題可能出現在代碼上。后來經過研究,發現還是要更改一下程序,要在header前面加上ob_clean()這個語句,這樣就可以運行了!哈哈,編碼調試程序如當醫生,百練成剛。

<?php
//設置 驗證碼高度寬度\上面字符個數
$img_w = 70;
$img_h = 22;
$font = 5;
$char_len = 5;
//數組合并, range()函數返回一個范圍數組
$char = array_merge ( range ( 'a', 'z' ), range ( 'A', 'Z' ), range ( '1', '9' ) );
$rand_keys = array_rand ( $char, $char_len ); //隨機從數組中取指定個數的元素,生成鍵值
if ($char_len == 1) { //若只有一個數,則array_rand()返回非數組類型
         $rand_keys = array ($rand_keys );
}
shuffle($rand_keys);  //可以不用
$code = '';
foreach ( $rand_keys as $k ) {
         $code .= $char [$k];
}
session_start ();
$_SESSION ['captcha'] = $code;
 
//添加線、色
//創建新圖像
$img = imagecreatetruecolor ( $img_w, $img_h );
//分配顏色
$bg_color = imagecolorallocate ( $img, 0xcc, 0xcc, 0xcc );
//畫布背景色
imagefill ( $img, 0, 0, $bg_color );
//干擾線
for($i = 0; $i < 300; ++$i) {
         $color = imagecolorallocate ( $img, mt_rand ( 0, 255 ), mt_rand ( 0, 255 ), mt_rand ( 0, 255 ) );
         imagesetpixel ( $img, mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), $color );
}
for($i = 0; $i <= 10; ++ $i) {
         //設置直線顏色
         $color = imageColorAllocate ( $img, mt_rand ( 0, 255 ), mt_rand ( 0, 255 ), mt_rand ( 0, 255 ) );
         //在$img圖像上隨機畫一條直線
         imageline ( $img, mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), mt_rand ( 0, $img_w ), mt_rand ( 0, $img_h ), $color );
         //imagesetpixel($img,mt_rand(0,$img_w),mt_rand(0,$img_h),$color);
}
 
//加加框
$rect_color = imagecolorallocate ( $img, 0x90, 0x90, 0x90 );
imagerectangle ( $img, 0, 0, $img_w - 1, $img_h - 1, $rect_color );
$str_color = imagecolorallocate ( $img, mt_rand ( 0, 100 ), mt_rand ( 0, 100 ), mt_rand ( 0, 100 ) );
$font_w = imagefontwidth ( $font );
$font_h = imagefontheight ( $font );
$str_len = $font_w * $char_len;
imagestring ( $img, $font, ($img_w - $str_len) / 2, ($img_h - $font_h) / 2, $code, $str_color );

設定字符串顏色

$str_color = imageColorAllocate($img, mt_rand(0, 100), mt_rand(0, 100),mt_rand(0, 100));
//設定字符串位置
$font_w = imageFontWidth($font);  //字體寬
$font_h = imageFontHeight($font); //字體高
$str_w = $font_w * $char_len;     //字符串寬
imageString($img, $font, ($img_w-$str_w)/2, ($img_h-$font_h)/2, $code, $str_color);
echo 'ddd'; //輸出影響生成圖片,查找了大半天的原因終于找到了
ob_clean(); //也可以加上這句,這樣前面有輸出,清除輸出緩存
//生成圖片
header ( 'Content-Type: image/png' );//header前不能加任何輸出或加ob_clean()清除
imagepng($img);
//----4 銷毀畫布
imagedestroy($img);


關于“如何解決php驗證碼后臺不能生成的問題”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

慈利县| 色达县| 蕉岭县| 堆龙德庆县| 海伦市| 澎湖县| 禄劝| 北宁市| 安吉县| 龙门县| 安义县| 湖南省| 太仓市| 方正县| 方山县| 叶城县| 黔西| 拉孜县| 都匀市| 连南| 麦盖提县| 随州市| 白河县| 华容县| 曲阳县| 勐海县| 迁西县| 滕州市| 荔波县| 腾冲县| 达日县| 嘉义县| 滦南县| 镇安县| 禄丰县| 任丘市| 望江县| 海盐县| 平谷区| 剑川县| 饶平县|