Maison  >  Article  >  développement back-end  >  Que dois-je faire si le code de vérification php ne peut pas être généré en arrière-plan ?

Que dois-je faire si le code de vérification php ne peut pas être généré en arrière-plan ?

藏色散人
藏色散人original
2021-11-19 09:28:461939parcourir

Solution au problème selon lequel le code de vérification PHP ne peut pas être généré en arrière-plan : 1. Ajoutez l'instruction "header('Content-type: image/png')" ; 2. Videz le cache de sortie via "ob_clean(); ".

Que dois-je faire si le code de vérification php ne peut pas être généré en arrière-plan ?

L'environnement d'exploitation de cet article : système Windows7, version PHP7.1, ordinateur DELL G3

Que dois-je faire si le code de vérification php ne peut pas être généré en arrière-plan ?

Le code de vérification PHP ne peut pas générer d'images, la raison est résolue :

Lors de la génération d'images, header('Content-type: image/png'); ! !

Ou ajoutez : ob_clean(); Même si vous utilisez la sortie, vous pouvez utiliser cette phrase pour vider le cache de sortie ! Très important ! ! !

Bien sûr, vous devez d'abord ouvrir la bibliothèque gd2, consultable via phpinfo. Après avoir effacé la nomenclature, le code est également écrit à partir de la ligne supérieure, le problème peut donc survenir dans le code. Après quelques recherches, j'ai découvert que je devais encore modifier le programme et ajouter l'instruction ob_clean() devant l'en-tête, pour qu'il puisse s'exécuter ! Haha, coder et déboguer des programmes, c'est comme être un médecin, vous deviendrez fort avec la pratique.

<?php
//设置 验证码高度宽度\上面字符个数
$img_w = 70;
$img_h = 22;
$font = 5;
$char_len = 5;
//数组合并, range()函数返回一个范围数组
$char = array_merge ( range ( &#39;a&#39;, &#39;z&#39; ), range ( &#39;A&#39;, &#39;Z&#39; ), range ( &#39;1&#39;, &#39;9&#39; ) );
$rand_keys = array_rand ( $char, $char_len ); //随机从数组中取指定个数的元素,生成键值
if ($char_len == 1) { //若只有一个数,则array_rand()返回非数组类型
         $rand_keys = array ($rand_keys );
}
shuffle($rand_keys);  //可以不用
$code = &#39;&#39;;
foreach ( $rand_keys as $k ) {
         $code .= $char [$k];
}
session_start ();
$_SESSION [&#39;captcha&#39;] = $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 );

Définir la couleur de la chaîne

$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 &#39;ddd&#39;; //输出影响生成图片,查找了大半天的原因终于找到了
ob_clean(); //也可以加上这句,这样前面有输出,清除输出缓存
//生成图片
header ( &#39;Content-Type: image/png&#39; );//header前不能加任何输出或加ob_clean()清除
imagepng($img);
//----4 销毁画布
imagedestroy($img);

Apprentissage recommandé : "Tutoriel vidéo PHP"

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn