求解答求解答
include.php中只能开启下面这一句。再开启其他就不能刷出验证码。是怎么回事? require_once 'image.func.php';
include.php中只能开启下面这一句。再开启其他就不能刷出验证码。是怎么回事? require_once 'image.func.php';
2017-11-17
getVerify.php中的代码
<?php
require_once '../include.php';
verifyImage();
image.func.php中最后的代码
if ($line) {
for ($i = 1; $i < $line; $i ++) {
$color = imagecolorallocate($image, mt_rand(50, 90), mt_rand(80, 200), mt_rand(90, 180));
imageline($image, mt_rand(0, $width - 1), mt_rand(0, $height - 1), mt_rand(0, $width - 1), mt_rand(0, $height - 1), $color);
}
}
header("content-type:image/gif");
imagegif($image);
imagedestroy($image);
}
举报