gpt4 book ai didi

php - 图像无法显示,因为它包含错误

转载 作者:行者123 更新时间:2023-11-28 23:59:45 25 4
gpt4 key购买 nike

<?php
//include database connection
include("include/db.php");

//select the image
$query = "SELECT image FROM fresult WHERE result_id = 1";

$result = mysql_query($query) or die('SQL error');


while($row1 = mysql_fetch_array($result, MYSQL_ASSOC))
{

header("Content-type: image/jpg");


//display the image data
print $row1['image'];
//exit;
}

?>

这段代码有什么问题?我不明白。

我尝试编写简单的代码来检索图像。我使用 xampp,SQL blob。

最佳答案

在我看来,您所要做的就是将标题切换为阅读:

header("Content-type: image/jpeg");

image/jpg 不是内容类型 header 。

如果您在评论中发布图像数据,我可能会提供更多帮助。

希望这对您有所帮助。

关于php - 图像无法显示,因为它包含错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30311811/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com